User talk:Gamer

From Esolang
Jump to navigation Jump to search

It was really fun making that math paper language with you. Sorry if I'm really really late, but thanks for that endeavor. It was my best language so far (dotlang was a befunge/asciidots clone ;p). -- andrew3335

no problem c: -- iBrow

also 1, with a minimal (for me really) instruction set:

1 -- pushes 1 to the stack

+ -- merges the top two stack elements (pop top 2, push sum)

P -- print top as an ascii character

i -- read input, push it on stack (must be one number: otherwise, behavior is undefined)

? -- pop the top two numbers: if top is greater than 2nd-top, push 1; otherwise, push 0

c -- take the top value of the stack n then jump to the nth instance of c in code

(symbol) -- a subroutine, called as (symbol)

that one is *smol* -- andrew3335