ion-shell 1.0.1

The Ion Shell
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if test a = a
  echo true a == a
  if test b != b
    echo true b != b
  else
    echo false b != b
    if test 3 -gt 2
      echo "true 3 > 2"
    else
      echo "false 3 > 2"
    end
  end
else
  echo false a == a
end