gobyexample/main.go

68 lines
2.3 KiB
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"
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"
2024-04-29 00:45:06 +00:00
// import "git.sangeeth.dev/gobyexample/closingchannels"
2024-04-29 00:55:37 +00:00
// import "git.sangeeth.dev/gobyexample/timers"
2024-04-29 02:04:27 +00:00
// import "git.sangeeth.dev/gobyexample/tickers"
2024-04-29 02:17:21 +00:00
// import "git.sangeeth.dev/gobyexample/workerpools"
2024-04-29 15:09:37 +00:00
// import "git.sangeeth.dev/gobyexample/waitgroups"
2024-05-01 10:31:47 +00:00
// import "git.sangeeth.dev/gobyexample/ratelimiting"
2024-05-01 10:39:07 +00:00
// import "git.sangeeth.dev/gobyexample/atomics"
2024-05-01 12:02:24 +00:00
// import "git.sangeeth.dev/gobyexample/mutex"
2024-05-01 12:49:36 +00:00
// import "git.sangeeth.dev/gobyexample/statefulgoroutines"
2024-05-01 13:09:16 +00:00
// import "git.sangeeth.dev/gobyexample/sorting"
2024-05-01 13:25:16 +00:00
// import "git.sangeeth.dev/gobyexample/panic"
2024-05-01 13:28:54 +00:00
// import "git.sangeeth.dev/gobyexample/defers"
2024-05-01 13:45:17 +00:00
// import "git.sangeeth.dev/gobyexample/recovering"
2024-05-01 14:42:00 +00:00
// import "git.sangeeth.dev/gobyexample/stringfuncs"
2024-05-01 15:21:49 +00:00
// import "git.sangeeth.dev/gobyexample/formatting"
2024-05-01 16:32:47 +00:00
// import "git.sangeeth.dev/gobyexample/templates"
2024-05-01 17:16:04 +00:00
// import "git.sangeeth.dev/gobyexample/regex"
2024-05-02 07:42:12 +00:00
// import "git.sangeeth.dev/gobyexample/json"
2024-05-02 07:56:46 +00:00
// import "git.sangeeth.dev/gobyexample/xml"
2024-05-02 12:45:18 +00:00
// import "git.sangeeth.dev/gobyexample/time"
2024-05-02 15:44:55 +00:00
// import "git.sangeeth.dev/gobyexample/rand"
import "git.sangeeth.dev/gobyexample/numberparsing"
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()
2024-04-29 00:45:06 +00:00
// closingchannels.ClosingChannels()
2024-04-29 00:55:37 +00:00
// timers.Timers()
2024-04-29 02:04:27 +00:00
// tickers.Tickers()
2024-04-29 02:17:21 +00:00
// workerpools.WorkerPools()
2024-04-29 15:09:37 +00:00
// waitgroups.WaitGroups()
2024-05-01 10:31:47 +00:00
// ratelimiting.RateLimiting()
2024-05-01 10:39:07 +00:00
// atomics.Atomics()
2024-05-01 12:02:24 +00:00
// mutex.Mutex()
2024-05-01 12:49:36 +00:00
// statefulgoroutines.StatefulGoroutines()
2024-05-01 13:09:16 +00:00
// sorting.Sorting()
2024-05-01 13:25:16 +00:00
// panic.Panic()
2024-05-01 13:28:54 +00:00
// defers.Defers()
2024-05-01 13:45:17 +00:00
// recovering.Recover()
2024-05-01 14:42:00 +00:00
// stringfuncs.StringFuncs()
2024-05-01 15:21:49 +00:00
// formatting.Formatting()
2024-05-01 16:32:47 +00:00
// templates.Templates()
2024-05-01 17:16:04 +00:00
// regex.Regex()
2024-05-02 07:42:12 +00:00
// json.Json()
2024-05-02 07:56:46 +00:00
// xml.Xml()
2024-05-02 12:45:18 +00:00
// time.Time()
2024-05-02 15:44:55 +00:00
// rand.Rand()
numberparsing.NumberParsing()
2024-04-27 05:45:44 +00:00
}