Lua, nobody on ORE likes it, but I do x'D It's easy to understand, easy to write and no big parenthesis mess, e.g:
simply get's
Code:
if x == 1 {
System.out.println("x is equal to one");
} else {
System.out.println("x is not equal to one, it's " + x);
}
Code:
if x == 1 then
print("x is equal to one")
else
print("x is not equal to one, it's "..x)
end