22 lines
601 B
Go
22 lines
601 B
Go
package main
|
|
|
|
// import "git.sangeeth.dev/gobyexample/runes"
|
|
// import "git.sangeeth.dev/gobyexample/structs"
|
|
// import "git.sangeeth.dev/gobyexample/generics"
|
|
// import "git.sangeeth.dev/gobyexample/errors"
|
|
// import "git.sangeeth.dev/gobyexample/goroutines"
|
|
// import "git.sangeeth.dev/gobyexample/channels"
|
|
// import "git.sangeeth.dev/gobyexample/cselect"
|
|
import "git.sangeeth.dev/gobyexample/timeouts"
|
|
|
|
func main() {
|
|
// runes.Runes()
|
|
// structs.Structs()
|
|
// generics.Generics()
|
|
// errors.Errors()
|
|
// goroutines.Goroutines()
|
|
// channels.Channels()
|
|
// cselect.Select()
|
|
timeouts.Timeouts()
|
|
}
|