Skip to content

Instantly share code, notes, and snippets.

@cliveyg
cliveyg / gforth_cheat_sheet.md
Created January 7, 2021 09:36 — 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