Skip to content

Instantly share code, notes, and snippets.

@fstamour
Last active June 30, 2019 13:44
Show Gist options
  • Save fstamour/6418bca1ffda2db21bf9d10ae69ea212 to your computer and use it in GitHub Desktop.
Save fstamour/6418bca1ffda2db21bf9d10ae69ea212 to your computer and use it in GitHub Desktop.
fizzbuzz in forth
#! /usr/bin/env gforth
( n -- )
: fizz? 3 mod 0= if ." Fizz" then ;
( n -- )
: buzz? 5 mod 0= if ." Buzz" then ;
( n -- )
: fizzbuzz? dup fizz? buzz?;
( n -- )
: fizzbuzz 0 do i dup . fizzbuzz? cr loop ;
50 fizzbuzz
bye
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment