alias.go 93 B

1234567
  1. package main
  2. import fm "fmt" // alias
  3. func main() {
  4. fm.Println("hello, world")
  5. }