├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── Procfile ├── README.md ├── app.json ├── commands.md ├── docs ├── Makefile ├── arithmetic.rst ├── conf.py ├── getting-started.rst ├── index.rst └── the-basics.rst ├── examples ├── cat.ogc ├── factorial.ogc ├── functions.ogc ├── helloWorld.ogc ├── numbers.ogc ├── repeatString.ogc ├── test.ogc └── truthMachine.ogc ├── explanations.py ├── fbuildroot.py ├── ide.py ├── o.c ├── old-docs ├── about.md ├── examples.md ├── index.md ├── spec │ ├── arrays.md │ ├── codeblocks.md │ ├── controlflow.md │ ├── files.md │ ├── http.md │ ├── macros.md │ ├── math.md │ ├── numbers.md │ ├── stack.md │ ├── stdio.md │ ├── strings.md │ └── variables.md └── tutorial.md ├── requirements.txt ├── runtime.txt ├── static ├── explanations.js ├── img │ ├── Thumbs.db │ └── logo.png ├── logo.ico ├── logo.png ├── o.js ├── parser.coffee └── parser.js └── templates ├── code.html ├── error.html ├── link.html └── primary.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn ide:app --log-file=- --timeout 120 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/app.json -------------------------------------------------------------------------------- /commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/commands.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/arithmetic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/docs/arithmetic.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/docs/getting-started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/the-basics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/docs/the-basics.rst -------------------------------------------------------------------------------- /examples/cat.ogc: -------------------------------------------------------------------------------- 1 | i -------------------------------------------------------------------------------- /examples/factorial.ogc: -------------------------------------------------------------------------------- 1 | H,;]* -------------------------------------------------------------------------------- /examples/functions.ogc: -------------------------------------------------------------------------------- 1 | {.*}:s 5so -------------------------------------------------------------------------------- /examples/helloWorld.ogc: -------------------------------------------------------------------------------- 1 | "Hello, World! -------------------------------------------------------------------------------- /examples/numbers.ogc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/examples/numbers.ogc -------------------------------------------------------------------------------- /examples/repeatString.ogc: -------------------------------------------------------------------------------- 1 | "ha"5{.+}d -------------------------------------------------------------------------------- /examples/test.ogc: -------------------------------------------------------------------------------- 1 | "abc'def" -------------------------------------------------------------------------------- /examples/truthMachine.ogc: -------------------------------------------------------------------------------- 1 | j{.o}w -------------------------------------------------------------------------------- /explanations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/explanations.py -------------------------------------------------------------------------------- /fbuildroot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/fbuildroot.py -------------------------------------------------------------------------------- /ide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/ide.py -------------------------------------------------------------------------------- /o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/o.c -------------------------------------------------------------------------------- /old-docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/about.md -------------------------------------------------------------------------------- /old-docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/examples.md -------------------------------------------------------------------------------- /old-docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/index.md -------------------------------------------------------------------------------- /old-docs/spec/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/spec/arrays.md -------------------------------------------------------------------------------- /old-docs/spec/codeblocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/spec/codeblocks.md -------------------------------------------------------------------------------- /old-docs/spec/controlflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/spec/controlflow.md -------------------------------------------------------------------------------- /old-docs/spec/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/spec/files.md -------------------------------------------------------------------------------- /old-docs/spec/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/spec/http.md -------------------------------------------------------------------------------- /old-docs/spec/macros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/spec/macros.md -------------------------------------------------------------------------------- /old-docs/spec/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/spec/math.md -------------------------------------------------------------------------------- /old-docs/spec/numbers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/spec/numbers.md -------------------------------------------------------------------------------- /old-docs/spec/stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/spec/stack.md -------------------------------------------------------------------------------- /old-docs/spec/stdio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/spec/stdio.md -------------------------------------------------------------------------------- /old-docs/spec/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/spec/strings.md -------------------------------------------------------------------------------- /old-docs/spec/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/spec/variables.md -------------------------------------------------------------------------------- /old-docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/old-docs/tutorial.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.4.3 -------------------------------------------------------------------------------- /static/explanations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/static/explanations.js -------------------------------------------------------------------------------- /static/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/static/img/Thumbs.db -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/static/logo.ico -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/static/logo.png -------------------------------------------------------------------------------- /static/o.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/static/o.js -------------------------------------------------------------------------------- /static/parser.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/static/parser.coffee -------------------------------------------------------------------------------- /static/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/static/parser.js -------------------------------------------------------------------------------- /templates/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/templates/code.html -------------------------------------------------------------------------------- /templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/templates/error.html -------------------------------------------------------------------------------- /templates/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/templates/link.html -------------------------------------------------------------------------------- /templates/primary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase/o/HEAD/templates/primary.html --------------------------------------------------------------------------------