-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Baltasar Sánchez E
committed
May 7, 2023
1 parent
89bb18a
commit bf4507b
Showing
10 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
README | ||
|
||
...tumbleweed... | ||
|
||
|
||
runs on python | ||
|
||
```sh | ||
python plox/plox.py | ||
``` |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
(13 > (5 * 3 + 9)); | ||
123 != 12312 + (2.3 == 123) * 9.12 | ||
123 != 12312 + (2.3 == 123) * 9.12; | ||
// asf asf | ||
1+2-3*4/5 // saywha | ||
print 1+2-3*4/5 ;// saywha | ||
var X = 1 == 2 ? "help" : "we cool, no help"; | ||
print (10 + (true ? 5 : - 5)); |
File renamed without changes.
This file contains 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,6 @@ var test = | |
|
||
|
||
"strings"; | ||
123; | ||
print 123; | ||
123.1233; // sample, should write a real program. | ||
print 123+123; |