-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo_main.go
executable file
·71 lines (67 loc) · 1.49 KB
/
demo_main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package main
import (
"std_pkg_demo/bufio_demo"
"std_pkg_demo/builtin_demo"
"std_pkg_demo/bytes_demo"
"std_pkg_demo/encode_demo"
"std_pkg_demo/flag_demo"
genericdemo "std_pkg_demo/generics_demo"
iodemo "std_pkg_demo/io_demo"
osdemo "std_pkg_demo/os_demo"
pathdemo "std_pkg_demo/path_demo"
runtimedemo "std_pkg_demo/runtime_demo"
sliceofanydemo "std_pkg_demo/slice_of_any_demo"
sortdemo "std_pkg_demo/sort_demo"
strconvdemo "std_pkg_demo/strconv_demo"
"std_pkg_demo/strings_demo"
syncdemo "std_pkg_demo/sync_demo"
templateDemo "std_pkg_demo/template"
timedemo "std_pkg_demo/time_demo"
)
func main() {
bufio_demo.Bufio_demo_run()
builtin_demo.BuiltinDemoRun()
bytes_demo.BytesDemoRun()
//
bytes_demo.BytesBufferDemo()
//
bytes_demo.BytesReaderRun()
//
encode_demo.RunEncodeDemo()
encode_demo.RunBinaryDemo()
//
flag_demo.RunFlagDemo()
//
strings_demo.StringsDemoRun()
strings_demo.RunStringBuilderDemo()
strings_demo.RunStringsReader()
//
strconvdemo.RunStrconvDemo()
//
sliceofanydemo.RunSliceOfAny()
//
sortdemo.RunSortDemo()
//
timedemo.RunTimeDemo()
syncdemo.SyncOnceRun()
syncdemo.RunGenericSingleton()
syncdemo.RunSyncPoolDemo()
syncdemo.RunBytesBuffPool()
//
syncdemo.RunSyncMapDemo()
syncdemo.RunAtomicDemo()
//
runtimedemo.RunDemo()
//
osdemo.RunOsDeo()
pathdemo.RunPathDemo()
pathdemo.RunFilePathDemo()
//
iodemo.RunIoPackageDemo()
iodemo.IoTypeDemoRun()
//
templateDemo.TemplateDemoRun()
templateDemo.RunGenStructType()
//
genericdemo.RunGenerics()
}