10 lines
197 B
Text
10 lines
197 B
Text
define main
|
|
|
|
% Sisal doesn't yet have a string built-in.
|
|
% Let's define one as an array of characters.
|
|
|
|
type string = array[character];
|
|
|
|
function main(returns string)
|
|
"Hello world!"
|
|
end function
|