Go to file
cosmonaut a0efcf548d more generic stuff 2021-05-15 12:47:38 -07:00
generators started work on generics 2021-05-14 11:55:44 -07:00
lib/dropt input option parsing 2021-04-28 15:21:51 -07:00
src more generic stuff 2021-05-15 12:47:38 -07:00
.gitignore add cmake build process + switch to bison 2021-04-18 14:10:15 -07:00
CMakeLists.txt Adds type for validating identifiers 2021-05-06 17:17:24 -07:00
README.md note 2021-04-22 20:13:55 -07:00
commenttest.w Adds error message to FindId, extra test code in main 2021-05-07 13:35:28 -07:00
euler001.w printing 2021-04-30 12:17:44 -07:00
example.w started work on generics 2021-05-14 11:55:44 -07:00
iftest.w Implements identifier lookup. 2021-05-08 14:51:15 -07:00
reftest.w Possibly implements full type annotation of the AST 2021-05-12 21:54:09 -07:00
types.w Explicitly sets IdNode type tags on creation. 2021-05-07 17:51:23 -07:00

README.md

Wraith

Wraith is my attempt at a medium-level programming language for game development.

Goals are:

  • explicit memory management
  • static types
  • zero-cost abstractions
  • Minimal OOP (no inheritance)
  • Implicit interfaces
  • Generic methods
  • C interop
  • simple cross-compilation to native code

Build dependencies:

  • Bison
  • Flex
  • LLVM