nerkn / NewestProgrammingLanguages

What will become next c or c++, type safety, memory allocation, garbage collection, whose backing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Newest Programming Languages

What will become next c or c++, type safety, memory allocation, garbage collection, whose backing

Language Carbon V lang Zig Rust
Maintainers 92 570 540 4000
Open Issues 630 2200 5000

v Lang

Includes webserver, db connectors, so small binary, superfast. I had problem with capturing surrounding variables with higher order functions,

Hello.v

fn main() {
	println('Hello World')
}

Carbon

Zig

Hello.zig

const std = @import("std");

pub fn main() !void {
    const stdout = std.io.getStdOut().writer();
    try stdout.writeAll("Hello World\n");
}

About

What will become next c or c++, type safety, memory allocation, garbage collection, whose backing