issue561.go 108 字节
Newer Older
A
aarzilli 已提交
1 2 3 4 5 6 7 8 9 10 11
package main

import "fmt"

func testfunction() {
	fmt.Printf("here!\n")
}

func main() {
	testfunction()
}