From 3cd19e6515a53a2b18f9788edbd40af3f71104dd Mon Sep 17 00:00:00 2001 From: Luna Date: Mon, 26 Aug 2019 14:30:13 -0300 Subject: [PATCH] add todo to readme --- README.md | 11 +++++++++-- examples/hello.v | 4 ++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b8657f5..f51db53 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,6 @@ negatively charged towards ## variations - - theres no `for` yet - - `for` is split between `for` and `loop` because my fucking god i cant stand 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 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 - step 1: dab diff --git a/examples/hello.v b/examples/hello.v index 9c1f047..28df0e2 100644 --- a/examples/hello.v +++ b/examples/hello.v @@ -37,7 +37,7 @@ fn main(a int) int { println('skirts') } - cock_and_ball_torture('cbt', 1, 2, 3) + test('asd', 1, 2, 3) return 23 @@ -48,5 +48,5 @@ fn main(a int) int { p.x = 69 - println(egg.scramble(3).with(cheddar)) + println(a.b(3).c(d)) }