let without_types = 22
let with_types:int = 42
# 1. comment ...
let one:int two = 1 "two" # rest
# 1. comment
let with_two_comments = 2 # 2. xcomment
let with_one_inline_comment = 2 # only inline
echo $without_types
echo $one
echo $two
echo $with_types
echo $with_two_comments
echo $with_one_inline_comment

# top comment for fn `aa`
fn func_with_args number name:str -- some doc string
   let bla = "..." # bb
end

func_with_args 2 "2"

fn without_any_args
end

without_any_args
