├── .gitignore ├── Dockerfile ├── LICENSE ├── Readme.md ├── doc ├── Learning C++ 11 By Looking Inside Steak.md └── steak 语言的设计与实现.md ├── examples ├── cpp17_demo.cpp ├── lazy.cpp └── steak_demo.stk.cpp ├── include ├── ret_type_impl.h ├── runtime.h └── steak.h ├── install.sh ├── src ├── compiler.hs └── steak_h_codegen.hs ├── stack.yaml └── steak.cabal /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/Readme.md -------------------------------------------------------------------------------- /doc/Learning C++ 11 By Looking Inside Steak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/doc/Learning C++ 11 By Looking Inside Steak.md -------------------------------------------------------------------------------- /doc/steak 语言的设计与实现.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/doc/steak 语言的设计与实现.md -------------------------------------------------------------------------------- /examples/cpp17_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/examples/cpp17_demo.cpp -------------------------------------------------------------------------------- /examples/lazy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/examples/lazy.cpp -------------------------------------------------------------------------------- /examples/steak_demo.stk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/examples/steak_demo.stk.cpp -------------------------------------------------------------------------------- /include/ret_type_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/include/ret_type_impl.h -------------------------------------------------------------------------------- /include/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/include/runtime.h -------------------------------------------------------------------------------- /include/steak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/include/steak.h -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/install.sh -------------------------------------------------------------------------------- /src/compiler.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/src/compiler.hs -------------------------------------------------------------------------------- /src/steak_h_codegen.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/src/steak_h_codegen.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/stack.yaml -------------------------------------------------------------------------------- /steak.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overlogged/steak/HEAD/steak.cabal --------------------------------------------------------------------------------