├── .idea ├── .name ├── BernieScript.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── typescript-compiler.xml ├── vcs.xml └── workspace.xml ├── ExtraFunctions └── socialist.py ├── JSsrc ├── Basictoken.js ├── Transcompiler.js ├── Transcompiler.js.map └── Transcompiler.ts ├── LICENSE ├── README.md ├── index.js └── package.json /.idea/.name: -------------------------------------------------------------------------------- 1 | BernieScript -------------------------------------------------------------------------------- /.idea/BernieScript.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/.idea/BernieScript.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/typescript-compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/.idea/typescript-compiler.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /ExtraFunctions/socialist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/ExtraFunctions/socialist.py -------------------------------------------------------------------------------- /JSsrc/Basictoken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/JSsrc/Basictoken.js -------------------------------------------------------------------------------- /JSsrc/Transcompiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/JSsrc/Transcompiler.js -------------------------------------------------------------------------------- /JSsrc/Transcompiler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/JSsrc/Transcompiler.js.map -------------------------------------------------------------------------------- /JSsrc/Transcompiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/JSsrc/Transcompiler.ts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jweinst1/BernieScript/HEAD/package.json --------------------------------------------------------------------------------