Skip to content

Instantly share code, notes, and snippets.

@henryhudson
henryhudson / gforth_cheat_sheet.md
Created February 12, 2021 02:06 — forked from RickCarlino/gforth_cheat_sheet.md
gforth cheat sheet

Math

  • .s - Show the stack
  • +, -, *, mod - Math operators
  • /mod - performs both / and mod

Stack manipulation

  • drop and 2drop - drop a stack item (once / twice)
  • dup - duplicate a stack item
  • rot - rotate the stack