diff options
| author | Mel <einebeere@gmail.com> | 2021-10-21 23:46:01 +0200 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2021-10-21 23:46:01 +0200 |
| commit | cff714c07e5e2c0f11c121504500a554d60c08cc (patch) | |
| tree | 6c9e98696530b2661343942948b9f1a50a8665e7 /src/interpret/mod.rs | |
| parent | a4980b8dbf1394c2b302f1de7c72d2264426b86e (diff) | |
| download | rabbithole-cff714c07e5e2c0f11c121504500a554d60c08cc.tar.zst rabbithole-cff714c07e5e2c0f11c121504500a554d60c08cc.zip | |
Implement program walking.
Diffstat (limited to 'src/interpret/mod.rs')
| -rw-r--r-- | src/interpret/mod.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interpret/mod.rs b/src/interpret/mod.rs index 2544ca3..813f45d 100644 --- a/src/interpret/mod.rs +++ b/src/interpret/mod.rs @@ -1 +1,3 @@ -pub mod walker; \ No newline at end of file +mod scope; +mod value; +pub mod walker; |
