/src/alvaro/hello/hello.go

https://code.google.com/p/alvalea-gocode/ · Go · 12 lines · 8 code · 2 blank · 2 comment · 0 complexity · 9d444819f2255580f1c0b939ce06b793 MD5 · raw file

  1. // Hello command
  2. package main
  3. import (
  4. "alvaro/hellopkg"
  5. "fmt"
  6. )
  7. // Main function for the hello command
  8. func main() {
  9. fmt.Println(hellopkg.SayHi())
  10. }