diff --git a/rsharp/test.py b/rsharp/test.py deleted file mode 100644 index 5e8ecaf..0000000 --- a/rsharp/test.py +++ /dev/null @@ -1,29 +0,0 @@ -from rsharp.main import * - -code = """include "rsxraylib" : *; -include "rsxtime" : *; -include "rsxstd" : *; -include "rsxmath" : *; - -int main() { - InitWindow(1200, 600, "Aermoss"); - - bool condition() { return std::bnot(WindowShouldClose()); } - void loop() { - BeginDrawing(); - ClearBackground(RAYWHITE); - EndDrawing(); - } std::while_callback("condition", "loop"); - - CloseWindow(); - return 0; -}""" - -variables = {} -functions = {} -library_functions = {} -create_json = False -name = "test.rsx" -include_folders = ["rsharp/include"] - -interpreter(parser(lexer(code, name, create_json), name, create_json), name, True, False, functions, variables, None, library_functions, include_folders, create_json) \ No newline at end of file