FizzBuzz/EsoLang: Difference between revisions

Content added Content deleted
(→‎{{header|SNUSP}}: syntaxhighlight)
(→‎{{header|Whitespace}}: syntaxhighlight for the <lang asm> part, but left the Whitespace part unchaged,)
Line 1,001: Line 1,001:
This solution was generated from the following pseudo-Assembly.
This solution was generated from the following pseudo-Assembly.


<lang asm>push 1 ; Initialize a counter.
<syntaxhighlight lang="asm">push 1 ; Initialize a counter.


0:
0:
Line 1,029: Line 1,029:
push 101 sub
push 101 sub
jn 0 ; Go again unless we're at 100.
jn 0 ; Go again unless we're at 100.
pop exit ; Exit clean.</lang>
pop exit ; Exit clean.</syntaxhighlight>