add todo to readme

This commit is contained in:
Luna 2019-08-26 14:30:13 -03:00
parent 5bb57116c0
commit 3cd19e6515
2 changed files with 11 additions and 4 deletions

View file

@ -16,8 +16,6 @@ negatively charged towards
## variations ## variations
- theres no `for` yet
- `for` is split between `for` and `loop` because my fucking god i cant stand - `for` is split between `for` and `loop` because my fucking god i cant stand
having *four* different variations of `for` to parse. having *four* different variations of `for` to parse.
@ -25,6 +23,15 @@ negatively charged towards
ambiguities (`if a {}` and `a{}`, v solves that with case, e.g structs Must ambiguities (`if a {}` and `a{}`, v solves that with case, e.g structs Must
Be Properly Titled and i can't bother with that) Be Properly Titled and i can't bother with that)
## todo
- no `for` yet
- no methods yet (`fn (v Type) blah() blah {...}`)
- do we really want a type system
- do we really want to output c
- do we really want to output llvm
- do we really want to output x86
## how ## how
- step 1: dab - step 1: dab

View file

@ -37,7 +37,7 @@ fn main(a int) int {
println('skirts') println('skirts')
} }
cock_and_ball_torture('cbt', 1, 2, 3) test('asd', 1, 2, 3)
return 23 return 23
@ -48,5 +48,5 @@ fn main(a int) int {
p.x = 69 p.x = 69
println(egg.scramble(3).with(cheddar)) println(a.b(3).c(d))
} }