Rexx
Linux Rexx Implementation
It should work under Linux with Regina, but I haven't done anything radical like, you know, test it.
/*arch_is_best.rexx*/ say 'Arch is the best!'
~ dunc, 2008-05-14 14:15:22
Amiga/UAE Rexx Implementation
If you have an Amiga or UAE this should be prettier, provided rexxreqtools.library is installed. This is great! I spent ages learning that language and I never get to use it any more.
/*arch_is_best_reqtools.rexx*/
options results
call addlib('rexxreqtools.library',0,-30,0)
req = rtezrequest('Arch is the best!','Better than AmigaOS?','Hey!')
~ dunc, 2008-05-14 14:16:04