文章目录
- 背景
- c语言 53KB
- c++ 53KB
- go 1.8M
- dart 4.6M
- python未测试
- nodejs未测试
- rust未测试
- java未测试
- cmd || bash || powershell 未测试
- other
背景
各个版本的helloworld,纯属闲的, 环境如下:
- win10
- mingw: gcc8.1.0
- go1.21
- dart3.5.4
c语言 53KB
gcc main.c -o c_main.exe
#include <stdio.h>
int main(){
printf("hello");
return 0;
}
c++ 53KB
g++ mian.cpp -o cpp_main.exe
#include <iostream>
int main(){std::cout<<"hello";return 0;
}
go 1.8M
go build main.go
package main
import "fmt"
func main() {fmt.Println("hello world")
}
dart 4.6M
dart compile exe .\main.dart
main() {print("Hello Dart developers");
}
python未测试
print("helloworld")
nodejs未测试
console.log("helloworld")
rust未测试
fn main() {println!("Hello, World!");
}
java未测试
public class HelloWorld {public static void main(String[] args) {System.out.println("Hello, World!");}
}
cmd || bash || powershell 未测试
echo "helloworld"
other
python, node都是基于pyinstaller或者pkg打包,懒得整了。 rust工具链太大,懒得下。