User:Arabica

From Esolang
Jump to navigation Jump to search

I have made an EsoLang called "Eon".

Classes are:

name(args) ->
 propety = "This is how you make a class!, also tab indentation is important."

Varibles Are:

name = value

Functions are:

name(args):
 return "This is a function!"

Arithmetic:

i++
i--
i += 1
i -= 1
i + 1
i - 1
i * 1
i / 1
i ^ 1

If statements:

if i < 0 and i >= 0:
 i++
else:
 i--
elif i >= 0 or i > 5:
 i += 2