分别用Python,Java,Golang,PHP实现Hello World,哪个更适合你

tech2022-07-31  134

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语言(三行,带分号):

  <?phpecho "Hello World";?>

 

最新回复(0)