Files

13 lines
110 B
Go

package main
import (
"fmt"
"log"
)
func main() {
log.Println("Hello World!")
fmt.Println("Success")
}