mirror of
https://github.com/Fluffy-Bean/GoLox.git
synced 2025-05-14 07:42:15 +00:00
12 lines
135 B
Text
12 lines
135 B
Text
fun main() {
|
|
example("world")
|
|
}
|
|
|
|
fun example(name) {
|
|
print "Hello, "
|
|
print name
|
|
print "!\n"
|
|
}
|
|
|
|
// Start program
|
|
main()
|