mercenary/mirc/test.mrc
Correl Roush c720c5aa5e Now supports the value concatenation operator "$+"
git-svn-id: file:///srv/svn/ircclient/trunk@7 a9804ffe-773b-11dd-bd7c-89c3ef1d2733
2009-04-22 14:46:41 +00:00

21 lines
No EOL
450 B
Text

; Hey, here's some test code
set name Correl
%first = Correl
%middle = Joseph
%name = %first $&
%middle $+ Roush $&
$+ ... how are you?
echo Hello, %name!
alias dostuff {
; Not very useful, but good for testing the parser!
var %b = 42
%b = $calc(%b * 3)
return %b;
}
alias -l dosomethingelse {
; Useless local alias!
echo -s Busy doing nothing
}
dostuff that nobody will see
dosomethingelse entirely
donothing because this alias doesn't exist