├── .gitignore ├── Accumulator.h ├── Behavior.h ├── BindBackend.cpp ├── BindBackend.h ├── ClassDiagram.cd ├── ClassDiagram.png ├── Conditional.h ├── ConditionalIf.h ├── ConditionalSwitch.h ├── Constructors.h ├── Evaluator.h ├── Evaluators.h ├── Exception.h ├── LICENSE ├── Lambda.cpp ├── Lambda.h ├── Lisplusplus.opensdf ├── Lisplusplus.psess ├── Lisplusplus.sdf ├── Lisplusplus.sln ├── Lisplusplus.v11.suo ├── Lisplusplus.vcxproj ├── Lisplusplus.vcxproj.filters ├── Lisplusplus.vcxproj.user ├── List.h ├── ListBuilder.h ├── NilType.cpp ├── NilType.h ├── Object.h ├── Objects.h ├── Printer.h ├── README.md ├── Rand.h ├── Reader.h ├── ScopedBind.h ├── Sequential.h ├── String.h ├── Test.h ├── Token.h ├── Value.h ├── liscpp.h └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /Accumulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Accumulator.h -------------------------------------------------------------------------------- /Behavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Behavior.h -------------------------------------------------------------------------------- /BindBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/BindBackend.cpp -------------------------------------------------------------------------------- /BindBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/BindBackend.h -------------------------------------------------------------------------------- /ClassDiagram.cd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ClassDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/ClassDiagram.png -------------------------------------------------------------------------------- /Conditional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Conditional.h -------------------------------------------------------------------------------- /ConditionalIf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/ConditionalIf.h -------------------------------------------------------------------------------- /ConditionalSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/ConditionalSwitch.h -------------------------------------------------------------------------------- /Constructors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Constructors.h -------------------------------------------------------------------------------- /Evaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Evaluator.h -------------------------------------------------------------------------------- /Evaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Evaluators.h -------------------------------------------------------------------------------- /Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Exception.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/LICENSE -------------------------------------------------------------------------------- /Lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Lambda.cpp -------------------------------------------------------------------------------- /Lambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Lambda.h -------------------------------------------------------------------------------- /Lisplusplus.opensdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Lisplusplus.opensdf -------------------------------------------------------------------------------- /Lisplusplus.psess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Lisplusplus.psess -------------------------------------------------------------------------------- /Lisplusplus.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Lisplusplus.sdf -------------------------------------------------------------------------------- /Lisplusplus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Lisplusplus.sln -------------------------------------------------------------------------------- /Lisplusplus.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Lisplusplus.v11.suo -------------------------------------------------------------------------------- /Lisplusplus.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Lisplusplus.vcxproj -------------------------------------------------------------------------------- /Lisplusplus.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Lisplusplus.vcxproj.filters -------------------------------------------------------------------------------- /Lisplusplus.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Lisplusplus.vcxproj.user -------------------------------------------------------------------------------- /List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/List.h -------------------------------------------------------------------------------- /ListBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/ListBuilder.h -------------------------------------------------------------------------------- /NilType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/NilType.cpp -------------------------------------------------------------------------------- /NilType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/NilType.h -------------------------------------------------------------------------------- /Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Object.h -------------------------------------------------------------------------------- /Objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Objects.h -------------------------------------------------------------------------------- /Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Printer.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/README.md -------------------------------------------------------------------------------- /Rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Rand.h -------------------------------------------------------------------------------- /Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Reader.h -------------------------------------------------------------------------------- /ScopedBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/ScopedBind.h -------------------------------------------------------------------------------- /Sequential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Sequential.h -------------------------------------------------------------------------------- /String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/String.h -------------------------------------------------------------------------------- /Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Test.h -------------------------------------------------------------------------------- /Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Token.h -------------------------------------------------------------------------------- /Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/Value.h -------------------------------------------------------------------------------- /liscpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/liscpp.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucretiel/LisPlusPlus/HEAD/main.cpp --------------------------------------------------------------------------------