Initial commit

This commit is contained in:
Neemek 2024-10-08 15:08:56 +02:00
commit 541140687f
Signed by: neemek
GPG key ID: 28360A8951CD0E9B
25 changed files with 4776 additions and 0 deletions

13
examples/hello.ang Normal file
View file

@ -0,0 +1,13 @@
write("Hello world!")
a := 1 + 2
write(a)
if a > 2 {
write("Hooray!! a is greater than 2!!!!")
} else {
write("oh nooo!!! a is less than or equal to 2!!!!!!!!!!")
}