C语言: .c文件 编译器gcc
//my_code下hello.c文件
$sudo apt install gcc
$gcc hello.c -o hello
$./hello
C++: .cpp文件 编译器g++
//my_code下hello.cpp文件
$sudo apt install g++
$gcc hello.cpp -o hellocpp
$./hellocpp
python: .py文件 不用编译
//my_code下hello.py文件
$python3 hello.py
go: .go文件 编译器go-build
//go_code/src/test/下main.go文件
-go_code 工程文件夹
-src 项目源代码文件夹
-test 测试代码文件夹
-main.go 测试代码
目录结构学习:Go目录结构
$sudo install golang-go
$go build //当前目录的代码文件编译成一个可执行文件test,执行与mian.go同目录的src/test/test
$./test