[*] -  SecureInfo.eu, /_tmp/hello_world.go

Back


package main

import "fmt"

func hello(name string) {
  fmt.Printf("Hello World %s",name)
}

func main() {
  hello("b0y")
}
⬆️ Top
admin