mirror of
https://github.com/correl/mercenary.git
synced 2024-11-27 11:09:52 +00:00
16 lines
286 B
Text
16 lines
286 B
Text
|
; Hey, here's some test code
|
||
|
set name Correl
|
||
|
%name = Correl $&
|
||
|
Roush
|
||
|
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
|
||
|
}
|