First commit, porting from PaCO

This commit is contained in:
2021-04-27 19:02:20 +02:00
commit f1f590735b
11 changed files with 1283 additions and 0 deletions

8
scope.h Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
#include <string>
void scope_init();
void scope_open_local();
void scope_close_local();
const int scope_declare_variable(const std::string name, const int type, const int length);
//scope_get_variable...