Zig
Zig is a general-purpose programming language that prioritizes safety, performance, and control. It is commonly used for systems programming, application development, and scripting.
Hello, world code example:
const std = @import("std");
pub fn main() !void {
try std.io.getStdOut().writer().writeAll("Hello world!\n");
}
Popularity: 0.84% of developers are using or have used this language.*
*According to StackOverflow's 2023 survey.
Repositories on GitHub: 7,485