let x = true

echo $x
while is $x
  let b = 2
  echo $b
end

for for_loop in [2 4] 
  echo $for_loop
end

let two = 0

while test $one -eq $two
   let one += 1
end

fn some_function number:int name 
   echo $number
   echo $name
   
   match $number
     case 1
        echo "$number is 1"
     case _
   end
end

if matches $one "1"
   echo "$one is '2'"
else if matches $two "2"
   echo "$two is '2'"
else
   let else_var = @len([2 4])
   echo "else"
end

let a b = "a" [b]
