hello-world 本文最后更新于:2022年2月22日 晚上 Hello world! 12345class HelloWorld { public static void main(String[] args) { System.out.println("Hello, world!"); }} 1print("Hello,World") 12345package mainimport "fmt"func main() { fmt.Println("Hello, world!")} 123456#include<iostream>int main(){ std::cout<<"Hello,World"); return 0;} hello-world https://yangshuai-uestc.github.io/2021/06/23/hello-world/ 作者 Catsyang 发布于 2021年6月23日 许可协议 理解Golang中的[]interface{}和interface{} 上一篇 Please enable JavaScript to view the comments