Which HelloWorld Is Faster: Rust, C, C++, Bourne Shell, Python3?
Which program works faster? Does Rust compiler do things extra fast? Here are our simplest programs on Rust, C, C++, Bash, Python3. They were run 100.000 times and timings are measured.
Listings
Listing HelloWorld on Rust, main.rs
fn main() {
println!("Hello, World!");
}
Listing HelloWorld on C, main.c
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}