gobyexample/main.go

22 lines
601 B
Go
Raw Normal View History

2024-04-27 05:45:44 +00:00
package main
// import "git.sangeeth.dev/gobyexample/runes"
2024-04-27 06:07:29 +00:00
// import "git.sangeeth.dev/gobyexample/structs"
2024-04-27 09:36:29 +00:00
// import "git.sangeeth.dev/gobyexample/generics"
2024-04-27 09:44:51 +00:00
// import "git.sangeeth.dev/gobyexample/errors"
2024-04-27 09:50:18 +00:00
// import "git.sangeeth.dev/gobyexample/goroutines"
2024-04-28 10:03:42 +00:00
// import "git.sangeeth.dev/gobyexample/channels"
2024-04-28 10:12:22 +00:00
// import "git.sangeeth.dev/gobyexample/cselect"
import "git.sangeeth.dev/gobyexample/timeouts"
2024-04-27 05:45:44 +00:00
func main() {
// runes.Runes()
2024-04-27 06:07:29 +00:00
// structs.Structs()
2024-04-27 09:36:29 +00:00
// generics.Generics()
2024-04-27 09:44:51 +00:00
// errors.Errors()
2024-04-27 09:50:18 +00:00
// goroutines.Goroutines()
2024-04-28 10:03:42 +00:00
// channels.Channels()
2024-04-28 10:12:22 +00:00
// cselect.Select()
timeouts.Timeouts()
2024-04-27 05:45:44 +00:00
}