Skip to content

Instantly share code, notes, and snippets.

View scotws's full-sized avatar

Scot W. Stevenson scotws

  • Just outside of Berlin, Germany
View GitHub Profile
@RickCarlino
RickCarlino / gforth_cheat_sheet.md
Last active September 8, 2025 17:54
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