-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.work
45 lines (44 loc) · 1.33 KB
/
go.work
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
go 1.21.4
use (
./codes/go/001_comment
./codes/go/002_hello_world
./codes/go/003_conditionals
./codes/go/004_loops
./codes/go/005_objects
./codes/go/006_arrays
./codes/go/007_functions
./codes/go/008_operator_ternary
./codes/go/009_operator_optional_chaining
./codes/go/010_operator_nullish_coalescing
./codes/go/011_operator_spread
./codes/go/array_entries
./codes/go/array_every
./codes/go/array_filter
./codes/go/array_find
./codes/go/array_find_index
./codes/go/array_includes
./codes/go/array_map
./codes/go/array_reduce
./codes/go/array_some
./codes/go/console_log
./codes/go/custom_error_and_error_handling
./codes/go/factorial
./codes/go/fizzbuzz
./codes/go/function_iife
./codes/go/function_optional_keyword_argument_default_argument_value
./codes/go/function_pipe
./codes/go/function_variadic_rest_arguments
./codes/go/generate_number_sequence
./codes/go/get_type
./codes/go/json_stringify
./codes/go/object_entries
./codes/go/object_from_entries
./codes/go/object_keys
./codes/go/object_values
./codes/go/string_interpolation
./codes/go/variables_and_scopes
./codes/go/www_001_abbreviate_name
./codes/go/www_002_count_vowels
./codes/go/xxx_chaos
./codes/go/yyy_required_features
)