aboutsummaryrefslogtreecommitdiff
path: root/examples/fib.fwd
AgeCommit message (Collapse)Author
5 daysWIP: rewrite C++ backend to be CHEADmasterKimplul
+ C allows for a bit more control, and we can manually handle closure contexts. For example `examples/fib.fwd` now works for effectively any `n`, pretty cool. + Fairly slow Fibonacci, I must admit. Initial profiling indicates it's mainly due to branch mispredictions, but I'll have to look into this a bit deeper. + The code is a bit hacked together, for now I'm more interested in getting things working, I'll worry about making things pretty later. + For testing, there's also initial support for modules, just so I can print stuff to the terminal + This commit is way too big, lol
2025-03-17fix some total movesKimplul
2025-01-09initial reference checkingKimplul
2025-01-06implement move checking furthermvcheckKimplul
+ Enough that examples still compile, but missing references etc.
2024-12-06add trailing closuresKimplul
+ Useful for guard statements, not entirely sure about the final syntax but at least they're possible
2024-12-06fix some comments in the examplesKimplul
2024-12-06add types to parserKimplul
+ No actual type checking is implemented as of yet, but with references and pointers I should be able to start playing around with checking move semantics and so on + Might at some point also look into type propagation for let, annoying to have to specify the same thing twice.
2024-12-04implement expression handling furtherKimplul
+ Add some notes about returning functions that I started thinking about as a result of the fib example