https://github.com/jakeroggenbuck/paper
A simple programming language and its interpreter
https://github.com/jakeroggenbuck/paper
interpreter programming-language
Last synced: 12 months ago
JSON representation
A simple programming language and its interpreter
- Host: GitHub
- URL: https://github.com/jakeroggenbuck/paper
- Owner: JakeRoggenbuck
- Created: 2021-01-19T20:16:34.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-27T08:02:33.000Z (about 5 years ago)
- Last Synced: 2025-01-07T16:23:02.050Z (about 1 year ago)
- Topics: interpreter, programming-language
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Paper
```py
print "Hello World!!"
string .name = input "What's your name? "
int .age = input "What's you age? "
float .a_float = input "Pick a number greater than 1 and less than 2: "
bool .ask_again = True
string .name = input "What's your name? "
int .age = input "What's you age? "
stop
```