├── .github └── FUNDING.yml ├── .gitignore ├── .idea ├── Go-Azerbaijan.iml ├── shelf │ ├── Uncommitted_changes_before_Update_at_12_09_2024_07_48_[Changes] │ │ └── shelved.patch │ ├── Uncommitted_changes_before_Update_at_12_09_2024_07_48__Changes_.xml │ ├── Uncommitted_changes_before_Update_at_12_09_2024_07_53_[Changes] │ │ └── shelved.patch │ └── Uncommitted_changes_before_Update_at_12_09_2024_07_53__Changes_.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── SUMMARY.md ├── anonim-struct └── README.md ├── aritmetic-operators └── README.md ├── arrays ├── README.md └── main.go ├── assignments-oprator └── README.md ├── atomic-counter └── README.md ├── channel └── README.md ├── closing-channels └── README.md ├── code-grouping-process └── README.md ├── comments └── README.md ├── constants ├── README.md └── main.go ├── databases ├── mssql.md ├── mysql.md └── postgres.md ├── defer └── README.md ├── dynamic-variables └── README.md ├── empty-identifiers └── README.md ├── errors └── README.md ├── first-app └── README.md ├── for ├── README.md └── main.go ├── functions ├── anonim-function.md ├── closures.md ├── function.md ├── recursion.md └── variadic-function.md ├── generics └── README.md ├── go-compiler-install └── README.md ├── goroutines └── README.md ├── if-else ├── README.md └── main.go ├── interface └── README.md ├── json └── README.md ├── logical-operators └── README.md ├── maps ├── README.md └── main.go ├── method └── README.md ├── mutex └── README.md ├── non-blocking-channel-operations └── README.md ├── panic └── README.md ├── pointers └── README.md ├── range-over-channels └── README.md ├── range └── README.md ├── ratelimiting └── README.md ├── recover └── README.md ├── relational-operators └── README.md ├── select └── README.md ├── slices ├── README.md └── main.go ├── sorting └── README.md ├── string-functions └── README.md ├── strings_and_runs └── README.md ├── struct-embedding └── README.md ├── structs └── README.md ├── switch ├── README.md └── main.go ├── text-templates └── README.md ├── ticker └── README.md ├── timeouts └── README.md ├── timers └── README.md ├── type-conversion └── README.md ├── values ├── README.md └── main.go ├── variables ├── README.md └── main.go ├── waitgroups └── README.md └── worker-pools └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/Go-Azerbaijan.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/.idea/Go-Azerbaijan.iml -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Update_at_12_09_2024_07_48_[Changes]/shelved.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/.idea/shelf/Uncommitted_changes_before_Update_at_12_09_2024_07_48_[Changes]/shelved.patch -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Update_at_12_09_2024_07_48__Changes_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/.idea/shelf/Uncommitted_changes_before_Update_at_12_09_2024_07_48__Changes_.xml -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Update_at_12_09_2024_07_53_[Changes]/shelved.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/.idea/shelf/Uncommitted_changes_before_Update_at_12_09_2024_07_53_[Changes]/shelved.patch -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Update_at_12_09_2024_07_53__Changes_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/.idea/shelf/Uncommitted_changes_before_Update_at_12_09_2024_07_53__Changes_.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /anonim-struct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/anonim-struct/README.md -------------------------------------------------------------------------------- /aritmetic-operators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/aritmetic-operators/README.md -------------------------------------------------------------------------------- /arrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/arrays/README.md -------------------------------------------------------------------------------- /arrays/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/arrays/main.go -------------------------------------------------------------------------------- /assignments-oprator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/assignments-oprator/README.md -------------------------------------------------------------------------------- /atomic-counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/atomic-counter/README.md -------------------------------------------------------------------------------- /channel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/channel/README.md -------------------------------------------------------------------------------- /closing-channels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/closing-channels/README.md -------------------------------------------------------------------------------- /code-grouping-process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/code-grouping-process/README.md -------------------------------------------------------------------------------- /comments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/comments/README.md -------------------------------------------------------------------------------- /constants/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/constants/README.md -------------------------------------------------------------------------------- /constants/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/constants/main.go -------------------------------------------------------------------------------- /databases/mssql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/databases/mssql.md -------------------------------------------------------------------------------- /databases/mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/databases/mysql.md -------------------------------------------------------------------------------- /databases/postgres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/databases/postgres.md -------------------------------------------------------------------------------- /defer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/defer/README.md -------------------------------------------------------------------------------- /dynamic-variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/dynamic-variables/README.md -------------------------------------------------------------------------------- /empty-identifiers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/empty-identifiers/README.md -------------------------------------------------------------------------------- /errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/errors/README.md -------------------------------------------------------------------------------- /first-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/first-app/README.md -------------------------------------------------------------------------------- /for/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/for/README.md -------------------------------------------------------------------------------- /for/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/for/main.go -------------------------------------------------------------------------------- /functions/anonim-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/functions/anonim-function.md -------------------------------------------------------------------------------- /functions/closures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/functions/closures.md -------------------------------------------------------------------------------- /functions/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/functions/function.md -------------------------------------------------------------------------------- /functions/recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/functions/recursion.md -------------------------------------------------------------------------------- /functions/variadic-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/functions/variadic-function.md -------------------------------------------------------------------------------- /generics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/generics/README.md -------------------------------------------------------------------------------- /go-compiler-install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/go-compiler-install/README.md -------------------------------------------------------------------------------- /goroutines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/goroutines/README.md -------------------------------------------------------------------------------- /if-else/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/if-else/README.md -------------------------------------------------------------------------------- /if-else/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/if-else/main.go -------------------------------------------------------------------------------- /interface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/interface/README.md -------------------------------------------------------------------------------- /json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/json/README.md -------------------------------------------------------------------------------- /logical-operators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/logical-operators/README.md -------------------------------------------------------------------------------- /maps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/maps/README.md -------------------------------------------------------------------------------- /maps/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/maps/main.go -------------------------------------------------------------------------------- /method/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/method/README.md -------------------------------------------------------------------------------- /mutex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/mutex/README.md -------------------------------------------------------------------------------- /non-blocking-channel-operations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/non-blocking-channel-operations/README.md -------------------------------------------------------------------------------- /panic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/panic/README.md -------------------------------------------------------------------------------- /pointers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/pointers/README.md -------------------------------------------------------------------------------- /range-over-channels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/range-over-channels/README.md -------------------------------------------------------------------------------- /range/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/range/README.md -------------------------------------------------------------------------------- /ratelimiting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/ratelimiting/README.md -------------------------------------------------------------------------------- /recover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/recover/README.md -------------------------------------------------------------------------------- /relational-operators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/relational-operators/README.md -------------------------------------------------------------------------------- /select/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/select/README.md -------------------------------------------------------------------------------- /slices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/slices/README.md -------------------------------------------------------------------------------- /slices/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/slices/main.go -------------------------------------------------------------------------------- /sorting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/sorting/README.md -------------------------------------------------------------------------------- /string-functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/string-functions/README.md -------------------------------------------------------------------------------- /strings_and_runs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/strings_and_runs/README.md -------------------------------------------------------------------------------- /struct-embedding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/struct-embedding/README.md -------------------------------------------------------------------------------- /structs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/structs/README.md -------------------------------------------------------------------------------- /switch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/switch/README.md -------------------------------------------------------------------------------- /switch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/switch/main.go -------------------------------------------------------------------------------- /text-templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/text-templates/README.md -------------------------------------------------------------------------------- /ticker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/ticker/README.md -------------------------------------------------------------------------------- /timeouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/timeouts/README.md -------------------------------------------------------------------------------- /timers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/timers/README.md -------------------------------------------------------------------------------- /type-conversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/type-conversion/README.md -------------------------------------------------------------------------------- /values/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/values/README.md -------------------------------------------------------------------------------- /values/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/values/main.go -------------------------------------------------------------------------------- /variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/variables/README.md -------------------------------------------------------------------------------- /variables/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/variables/main.go -------------------------------------------------------------------------------- /waitgroups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/waitgroups/README.md -------------------------------------------------------------------------------- /worker-pools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhanbalaRashidov/Go-Azerbaijan/HEAD/worker-pools/README.md --------------------------------------------------------------------------------