isbpl/examples/helloworld.isbpl

6 lines
62 B
Text
Raw Normal View History

2022-05-13 19:12:38 +02:00
func main {
2022-05-17 20:02:49 +02:00
with args ;
2022-05-13 19:12:38 +02:00
"Hello World!\n" puts
0
2022-05-17 20:02:18 +02:00
}