Skip to content

Instantly share code, notes, and snippets.

View pnclose's full-sized avatar

Peter Close pnclose

  • Raleigh, NC
View GitHub Profile
@pnclose
pnclose / gforth_cheat_sheet.md
Created February 13, 2022 04:43 — 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