colorful rat Ratfactor.com > Dave's Repos

meow5

A stack-based pure inlining concatenative programming language written in NASM assembly
git clone http://ratfactor.com/repos/meow5/meow5.git

meow5/five-loop.meow

Download raw file: five-loop.meow

1 def meow 2 "Meow!\n" print 3 4 # decrement the stack each time or 5 # we'll end up with an infinite loop! 6 dec 7 ; 8 9 # Another def that loops! 10 def five-meows-loop 11 5 loop? meow 12 exit 13 ; 14 15 # Write an executable :-) 16 elf five-meows-loop