Find keywords

Use runes/chars for characters
This commit is contained in:
Michał Gdula 2024-09-23 12:34:17 +01:00
parent 175d300e03
commit a63c07d5bf
4 changed files with 98 additions and 57 deletions

12
scripts/function.lox Normal file
View file

@ -0,0 +1,12 @@
fun main() {
example("world")
}
fun example(name) {
print "Hello, "
print name
print "!\n"
}
// Start program
main()