first commit

This commit is contained in:
LunarAkai 2025-08-05 16:20:01 +02:00
commit d974798fcb
6 changed files with 184 additions and 0 deletions

9
syntax.akai Normal file
View file

@ -0,0 +1,9 @@
fun helloWorld() {
// Variables either dynamically or statically typed
var String: test = "I'm a string"
var foo = 12
var bar = foo + 10
print("Hello World " + bar)
}