15 lines
124 B
Go
15 lines
124 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println("Hello world!")
|
||
|
|
||
|
s := Server{
|
||
|
port: ":3000",
|
||
|
}
|
||
|
s.serve()
|
||
|
}
|