多语言学习,c、golang、java、js、lua、python、rust
遵照惯例,我们的第一个程序是通过标准输出打印字符串“Hello World”
运行程序
python .\python\code\hello.py运行程序
go run .\golang\code\hello.go运行程序
lua .\lua\code\hello.luanode .\js\code\hello.js运行程序
# 运行命令
cd .\java\code\ && javac Hello.java && java Hello运行程序
cd .\c\code\ && gcc hello.c -o hello && .\hello运行程序
cd .\rust\code && rustc hello.rs && .\hello