From d40f0692d64405035492f4e2e569af67fad005ef Mon Sep 17 00:00:00 2001 From: shadowninja55 <49539636+shadowninja55@users.noreply.github.com> Date: Wed, 7 Jul 2021 18:15:52 -0400 Subject: [PATCH] clarify c2v / cpp2v and make example build --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 03ef152b5..aff93eb7d 100644 --- a/index.html +++ b/index.html @@ -311,15 +311,15 @@

Small and easy to build compiler

-

C translation (wip)

-

V can translate your entire C project (wip) and offer you the safety, simplicity, and 10-25x compilation speed-up.

+

C and C++ translation (wip)

+

V can translate your entire C or C++ project (wip) and offer you the safety, simplicity, and 10-25x compilation speed-up.

std::vector s;
 s.push_back("V is ");
 s.push_back("awesome");
 std::cout << s.size();
-
mut s := []
+
mut s := []string{}
 s << 'V is '
 s << 'awesome'
 println(s.len)