FizzBuzz/EsoLang: Difference between revisions

Content added Content deleted
(→‎{{header|AsciiDots}}: syntaxhighlight)
(→‎{{header|beeswax}}: syntaxhighlight)
Line 50: Line 50:


Simple solution:
Simple solution:
<lang beeswax> > q
<syntaxhighlight lang="beeswax"> > q
>@F5~%"d@F{ > @F q
>@F5~%"d@F{ > @F q
_1>F3~%'d`Fizz`@F5~%'d >`Buzz`@FNp
_1>F3~%'d`Fizz`@F5~%'d >`Buzz`@FNp
;bL@~.~4~.5~5@ P<</lang>
;bL@~.~4~.5~5@ P<</syntaxhighlight>


More clever solution, checking n%5 only on one path:
More clever solution, checking n%5 only on one path:
<lang beeswax> >@?q
<syntaxhighlight lang="beeswax"> >@?q
> q >Ag'd@{?p
> q >Ag'd@{?p
_>"1F3~%'d`Fizz`f>@F5~%'d`Buzz`@p
_>"1F3~%'d`Fizz`f>@F5~%'d`Buzz`@p
b P~;"-~@~.+0~P9@N?<</lang>
b P~;"-~@~.+0~P9@N?<</syntaxhighlight>


=={{header|Befunge}}==
=={{header|Befunge}}==