├── .gitignore ├── README.md ├── aup.png ├── examples ├── array.aup ├── block.aup ├── class.aup ├── exception.aup ├── fibonacci.aup ├── function.aup ├── hello.aup ├── if.aup ├── interval.aup ├── msgbox.aup ├── parallel.aup ├── timeout.aup └── var.aup └── src ├── aup.h ├── chunk.c ├── code.h ├── gc.c ├── gc.h ├── lexer.c ├── main.c ├── object.c ├── object.h ├── parser.c ├── table.c ├── util.c ├── util.h ├── value.c ├── value.h ├── vm.c └── vm.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/README.md -------------------------------------------------------------------------------- /aup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/aup.png -------------------------------------------------------------------------------- /examples/array.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/examples/array.aup -------------------------------------------------------------------------------- /examples/block.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/examples/block.aup -------------------------------------------------------------------------------- /examples/class.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/examples/class.aup -------------------------------------------------------------------------------- /examples/exception.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/examples/exception.aup -------------------------------------------------------------------------------- /examples/fibonacci.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/examples/fibonacci.aup -------------------------------------------------------------------------------- /examples/function.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/examples/function.aup -------------------------------------------------------------------------------- /examples/hello.aup: -------------------------------------------------------------------------------- 1 | puts "Hello, world!" 2 | -------------------------------------------------------------------------------- /examples/if.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/examples/if.aup -------------------------------------------------------------------------------- /examples/interval.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/examples/interval.aup -------------------------------------------------------------------------------- /examples/msgbox.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/examples/msgbox.aup -------------------------------------------------------------------------------- /examples/parallel.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/examples/parallel.aup -------------------------------------------------------------------------------- /examples/timeout.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/examples/timeout.aup -------------------------------------------------------------------------------- /examples/var.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/examples/var.aup -------------------------------------------------------------------------------- /src/aup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/aup.h -------------------------------------------------------------------------------- /src/chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/chunk.c -------------------------------------------------------------------------------- /src/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/code.h -------------------------------------------------------------------------------- /src/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/gc.c -------------------------------------------------------------------------------- /src/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/gc.h -------------------------------------------------------------------------------- /src/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/lexer.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/main.c -------------------------------------------------------------------------------- /src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/object.c -------------------------------------------------------------------------------- /src/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/object.h -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/table.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/util.h -------------------------------------------------------------------------------- /src/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/value.c -------------------------------------------------------------------------------- /src/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/value.h -------------------------------------------------------------------------------- /src/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/vm.c -------------------------------------------------------------------------------- /src/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoplus-lang/aup/HEAD/src/vm.h --------------------------------------------------------------------------------