This commit is contained in:
2025-01-17 08:28:56 -03:00
parent faa2517f52
commit 10db86b2c9
9 changed files with 400 additions and 5 deletions

7
demos/hello_world.lox Normal file
View File

@@ -0,0 +1,7 @@
// Funcion hello world!
fun helloWorld(param) {
variable = "hello world" + param;
print variable;
}
helloWorld("daniel");