Skip to content

Latest commit

 

History

History

helloworld

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

go第一个程序helloworld

package main

import "fmt"

func main() {
	fmt.Println("hello world")
}