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"
|
2024-04-28 10:44:14 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/timeouts"
|
2024-04-28 11:15:17 +00:00
|
|
|
// import "git.sangeeth.dev/gobyexample/selectdefault"
|
|
|
|
import "git.sangeeth.dev/gobyexample/closingchannels"
|
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()
|
2024-04-28 10:44:14 +00:00
|
|
|
// timeouts.Timeouts()
|
2024-04-28 11:15:17 +00:00
|
|
|
// selectdefault.SelectDefault()
|
|
|
|
closingchannels.ClosingChannels()
|
2024-04-27 05:45:44 +00:00
|
|
|
}
|