Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 475 Bytes

README.md

File metadata and controls

53 lines (31 loc) · 475 Bytes

TwitchMonkey

A learning aid for engines. Very small engine for a very small language. Implements the following:

Grammar

Script:
   Expression

Expression:
   A Expression
   B Expression
   C Expression
   D Expression

A :
  "a"

B :
  "b"

C :
  "c"

D :
  "d"

Semantics

A : "a"

Execution Step: Print "goose"

B : "b"

Execution Step: Print "duck"

C : "c"

Execution Step: Print "swan"

D : "d"

Execution Step: Print "finch"