This website works better with JavaScript.
Explore
Sign In
quwiier
/
programming-basics-2022
forked from
ottergottaott/programming-basics-2022
Watch
1
Star
0
Fork
You've already forked programming-basics-2022
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
30
Commits
4
Branches
0
Tags
384 KiB
Tree:
ad77de3670
programming-basics-2022
/
02
/
02.py
6 lines
55 B
Raw
Normal View
History
Unescape
Escape
Code from second seminar. Here are examples of *functions* and *higher-order functions*. All signatures of functions are annotated with types and could be typechecked with mypy or pyright.
3 years ago
def
square
(
x
:
int
)
-
>
int
:
pass
square
(
"
asdasd
"
)