Created
March 9, 2019 20:46
-
-
Save pankuznetsov/62dfcda23cdd3d4e3c83c25a676a27ad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$code = '' # Line for execution | |
$line_no = 0 # Line number | |
$base = 0 # Master pointer | |
$vars = { } # Variables hash table | |
$lines = [ ] # Lines of program | |
$return_stack = [ ] # Call stack | |
$run = true # False if END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment