diff options
| author | Matthew Hall <hallmatthew314@gmail.com> | 2022-09-09 23:47:47 +1200 |
|---|---|---|
| committer | Matthew Hall <hallmatthew314@gmail.com> | 2022-09-09 23:47:47 +1200 |
| commit | 60d51c2fd82e9058eea12a9f11d9f29b4fc173e6 (patch) | |
| tree | 6c0b9e7e2520ca791ef3ed6428ba1efef1b72a13 /src/false/program.cr | |
| parent | 9965a890c4c4ec1fedb10bd4f27ed8305cad83cb (diff) | |
Start of FALSE implementationfalse
Diffstat (limited to 'src/false/program.cr')
| -rw-r--r-- | src/false/program.cr | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/false/program.cr b/src/false/program.cr new file mode 100644 index 0000000..18ce3ef --- /dev/null +++ b/src/false/program.cr @@ -0,0 +1,9 @@ +require "./false.cr" +require "../program.cr" + +struct False::Program < Flint::Program + def interpret : Nil + puts "TODO" + end +end + |
