├── LICENSE ├── README.md ├── dependencies └── polyfills.js ├── docs ├── Makefile ├── _build │ ├── doctrees │ │ ├── auto-golf.doctree │ │ ├── basic-examples.doctree │ │ ├── basics.doctree │ │ ├── environment.pickle │ │ ├── errors.doctree │ │ ├── first-program.doctree │ │ ├── getters.doctree │ │ ├── getting-started.doctree │ │ ├── index.doctree │ │ ├── installation.doctree │ │ ├── new-features.doctree │ │ ├── understanding.doctree │ │ ├── unicode.doctree │ │ └── variables.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _sources │ │ ├── auto-golf.txt │ │ ├── basic-examples.txt │ │ ├── basics.txt │ │ ├── errors.txt │ │ ├── first-program.txt │ │ ├── getters.txt │ │ ├── getting-started.txt │ │ ├── index.txt │ │ ├── installation.txt │ │ ├── new-features.txt │ │ ├── understanding.txt │ │ ├── unicode.txt │ │ └── variables.txt │ │ ├── _static │ │ ├── ajax-loader.gif │ │ ├── basic.css │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── comment.png │ │ ├── css │ │ │ ├── badge_only.css │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── down-pressed.png │ │ ├── down.png │ │ ├── file.png │ │ ├── fonts │ │ │ ├── Inconsolata-Bold.ttf │ │ │ ├── Inconsolata-Regular.ttf │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ ├── RobotoSlab-Regular.ttf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── jquery-1.11.1.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ ├── underscore.js │ │ ├── up-pressed.png │ │ ├── up.png │ │ └── websupport.js │ │ ├── auto-golf.html │ │ ├── basic-examples.html │ │ ├── errors.html │ │ ├── genindex.html │ │ ├── getting-started.html │ │ ├── index.html │ │ ├── installation.html │ │ ├── new-features.html │ │ ├── objects.inv │ │ ├── search.html │ │ ├── searchindex.js │ │ └── variables.html ├── auto-golf.rst ├── basic-examples.rst ├── conf.py ├── errors.rst ├── getting-started.rst ├── index.rst ├── installation.rst ├── make.bat ├── new-features.rst └── variables.rst ├── logo ├── TeaScript.png └── TeaScriptWide.png └── src ├── env ├── generator.es6.js ├── generator.js ├── macros.js └── props.json ├── sh ├── sh.js ├── teascript └── teascript_run ├── v1 └── teascript.js ├── v2 └── teascript.js └── v3 ├── teascript.es6 └── teascript.js /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
9 | All Documentation
10 | Online Interpreter
11 |