17 lines
158 B
Go
17 lines
158 B
Go
|
package main
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
/*
|
||
|
import "math"
|
||
|
import "sync"
|
||
|
import rand "math/rand/v2"
|
||
|
|
||
|
type src = *rand.Rand
|
||
|
*/
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println("Hello world")
|
||
|
|
||
|
}
|