alias test {
var %i 1
var %x 1
while (%i <= 10) {
%x = 1
while (%x <= 10) {
echo -a %x
inc %x
}
inc %i
}
}
type: /test