chore: add some operations in the example

This commit is contained in:
2026-05-28 18:27:10 +02:00
parent 7515716864
commit 1b078b832c

View File

@@ -2,3 +2,10 @@ a: int = 3
b: int = 4
c = a + b # -> int
c = "invalid" # -> can't assign str to int variable
d = True
e = d + d
f: float = a