hello-world

本文最后更新于:2022年2月22日 晚上

Hello world!

1
2
3
4
5
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}
1
print("Hello,World")
1
2
3
4
5
package main
import "fmt"
func main() {
fmt.Println("Hello, world!")
}
1
2
3
4
5
6
#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日
许可协议