A high level, dynamically typed, interpreted programming language, designed as a member of the C family of programming languages.
print "Hello, Mous!";
true;
false;
1234;
12.34;
"Hello, Mous!";
Basic arithmetic operations are supported: +
, -
, *
, /
.
add + me;
subtract - me;
multiply * me;
divide / me;
Comparing numbers
less < than;
lessThan <= orEqual;
greater > than;
greaterThan >= orEqual;
Testing the equality of two values (even different types, which would always return false)
equal == to;
notEqual != to;
123 == "123";
Uses the prefix operators !
for negation, and
for conjunction, and or
for disjunction.
!true
!false
true and false;
true and true;
false or false;
true or false;