Aura Language
Loading...
Aura Language Playground

Aura V1.1

Aura Language Playground

A custom, Python-like language designed for absolute simplicity. Write your code on the left and see the magic on the right.

main.au
Output Console
Aura REPL initialized. Ready to run.

Aura Cheat Sheet

Variables

name = "Aura"
age = 10

Printing

print "Hello " + name

Math

result = (5 + 5) * 2

Repeat Loops

repeat 3
  print "Hi"
end

While Loops

while x < 5
  x = x + 1
end

Conditionals

if age > 5
  print "Big"
else
  print "Small"
end

Functions

def add(a, b)
  return a + b
end