RosettaCodeData/Task/Hello-world-Text/Sisal/hello-world-text.sisal
2015-11-18 06:14:39 +00:00

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