Textual representation
Code layout
# inline expression
def sum a b: a + b
# standard function declaration with indented code block
def main:
v = Vector 1 2 3
print $ checkVector v# ERROR: Indentation level does not match the first expression's one
def main: v = Vector 1 2 3
print $ checkVector vScoping
Last updated
Was this helpful?