12 lines
127 B
Plaintext
12 lines
127 B
Plaintext
fun putstr(s)
|
|
|
|
fun f1() =
|
|
putstr("funkcija 1\n\00"),
|
|
0
|
|
|
|
fun f2() =
|
|
putstr("funkcija 2\n\00"),
|
|
0
|
|
|
|
fun main() =
|
|
f1() || f2() |