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)