RosettaCodeData/Task/Hello-world-Text/Sing/hello-world-text.sing
2023-07-01 13:44:08 -04:00

7 lines
111 B
Text

requires "sio";
public fn singmain(argv [*]string) i32
{
sio.print("hello world !\r\n");
return(0);
}