Skip to content

Instantly share code, notes, and snippets.

View 4ster-light's full-sized avatar

✰λster✰ 4ster-light

View GitHub Profile
@4ster-light
4ster-light / Program.fs
Created August 3, 2025 10:45
Logic table generator
type Token =
| LParen // Left parenthesis '('
| RParen // Right parenthesis ')'
| NotOp // NOT operator '!'
| AndOp // AND operator '&'
| OrOp // OR operator '|'
| ImpliesOp // Implication operator '->'
| BiconditionalOp // Biconditional operator '<->'
| Variable of string // A logical variable (e.g., "P", "Q")
| Eof // End of file/input marker