FizzBuzz/EsoLang: Difference between revisions

Correct typo in comment under Brainf*** section
(→‎{{header|Small}}: syntaxhighlight)
(Correct typo in comment under Brainf*** section)
 
(3 intermediate revisions by 2 users not shown)
Line 3:
<br><br>
 
=={{header|=AsciiDots}}===
 
Infinite loop:
Line 47:
</syntaxhighlight>
 
===Beeswax===
=={{header|beeswax}}==
 
Simple solution:
Line 61:
b P~;"-~@~.+0~P9@N?<</syntaxhighlight>
 
=={{header|=Befunge}}===
(befunge 93)
<syntaxhighlight lang="befunge">55*4*v _ v
Line 73:
>:#,_ $> ^</syntaxhighlight>
 
=={{header|=Brainf***}}===
<syntaxhighlight lang="bf">FizzBuzz
 
Line 109:
>>
[
Do hundrethundred times:
 
Decrement counter
Line 231:
<<</syntaxhighlight>
 
=={{header|=Chef}}===
This was clearly a challenge in a language
without a modulus operator,
Line 425:
Refrigerate.</syntaxhighlight>
 
=={{header|=FALSE}}===
<syntaxhighlight lang="false">[\$@$@\/*=]d:
[1\$3d;!["Fizz"\%0\]?$5d;!["Buzz"\%0\]?\[$.]?"
Line 431:
0[$100\>][1+f;!]#%</syntaxhighlight>
 
=={{header|=Fish}}===
<syntaxhighlight lang="Fishfish">0voa ~/?=0:\
voa oooo'Buzz'~< /
>1+:aa*1+=?;::5%:{3%:@*?\?/'zziF'oooo/
^oa n:~~/</syntaxhighlight>
 
=={{header|=LOLCODE}}===
<syntaxhighlight lang="LOLCODElolcode">HAI 1.3
 
IM IN YR fizz UPPIN YR i TIL BOTH SAEM i AN 100
Line 458:
 
Another method using LOLCODE 1.2
<syntaxhighlight lang="LOLCODElolcode">HAI 1.2
I HAS A NUMZ ITZ 1
IM IN YR FIZZR UPPIN YR NUMZ TIL BOTH SAEM NUMZ AN 100
Line 475:
KTHXBYE</syntaxhighlight>
 
=={{header|=Piet}}===
Código sacado de https://github.com/zphixon
 
Line 481:
 
 
=={{header|=Small}}===
<syntaxhighlight lang="Smallsmall">
+++++++++++++++++++++++++++++++++++++++++++++++++.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.
Line 897:
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++</syntaxhighlight>
 
=={{header|=SNUSP}}===
<langsyntaxhighlight lang="snusp"> / 'B' @=@@=@@++++#
// / 'u' @@@@@=@+++++#
// // / 'z' @=@@@@+@++++#
Line 932:
/<+> -\!?-\!?-\!?-\!?-\!
\?!\-?!\-?!\-?!\-?!\-?/\ div10
# +/! +/! +/! +/! +/</langsyntaxhighlight>
 
=={{header|=Whitespace}}===
 
<syntaxhighlight lang="whitespace">
=={{header|Whitespace}}==
<lang Whitespace>
 
Line 998 ⟶ 997:
 
 
</syntaxhighlight>
</lang>
 
This solution was generated from the following pseudo-Assembly.
 
<langsyntaxhighlight lang="asm">push 1 ; Initialize a counter.
 
0:
Line 1,030 ⟶ 1,029:
push 101 sub
jn 0 ; Go again unless we're at 100.
pop exit ; Exit clean.</langsyntaxhighlight>