1
0
Fork 0
forked from fun/fun

Added shebang/comments, types, identifiers etc. and added history/ for the future...

This commit is contained in:
Johannes Findeisen 2025-09-14 00:28:08 +02:00
commit 5272148946
3 changed files with 176 additions and 10 deletions

3
history/0.1.0-print.fun Executable file
View file

@ -0,0 +1,3 @@
fun hello_world() {
print("Hello, world!")
}

View file

@ -0,0 +1,11 @@
#!/usr/bin/env fun
/*
* Hello, world!
*/
fun hello_world() {
print("Hello, world!")
}
// Bye, world!