11 lines
108 B
Standard ML
11 lines
108 B
Standard ML
|
|
#!/usr/bin/env fun
|
||
|
|
|
||
|
|
/*
|
||
|
|
* Hello, world!
|
||
|
|
*/
|
||
|
|
|
||
|
|
fun hello_world() {
|
||
|
|
print("Hello, world!")
|
||
|
|
}
|
||
|
|
|
||
|
|
// Bye, world!
|