
Python语言(只要一行,不带分号):
- print("Hello World")
Java语言(需要五行,要带分号):
- public class test{
- public static void main(String[] args) {
- System.out.println("Hello World");
- }
- }
Golang语言(五行,不带分号):
- package main
-
- import "fmt"
-
- func main() {
- fmt.Println("Hello World")
- }
PHP语言(三行,带分号):
- <?php
- echo "Hello World";
- ?>
相关文章:
-
2021-08-27
-
2021-07-29
-
2021-12-25
-
2022-12-23
-
2021-08-08
-
2021-11-03
-
2021-08-31
猜你喜欢
-
2021-08-22
-
2021-07-08
-
2021-08-10
-
2021-07-15
-
2021-05-02
-
2021-10-14
-
2021-05-22
相关资源
-
下载
2021-06-30
-
下载
2023-01-30
-
下载
2022-12-23
-
下载
2023-02-10