An open API service indexing awesome lists of open source software.

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

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
```