├── .gitignore ├── .idea └── workspace.xml ├── Makefile ├── README.md ├── best-practice └── persian │ └── golang.md ├── donate.png ├── img.png ├── interview └── persian │ ├── concurrency.md │ ├── concurrency_patterns.md │ ├── data_type.md │ └── interface.md ├── roadmap └── persian │ └── golang.md └── software-engineer └── persian └── software_engineer.md /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /.vscode/ -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbardia72/Go-Interview-Questions-And-Answers/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbardia72/Go-Interview-Questions-And-Answers/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbardia72/Go-Interview-Questions-And-Answers/HEAD/README.md -------------------------------------------------------------------------------- /best-practice/persian/golang.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbardia72/Go-Interview-Questions-And-Answers/HEAD/donate.png -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbardia72/Go-Interview-Questions-And-Answers/HEAD/img.png -------------------------------------------------------------------------------- /interview/persian/concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbardia72/Go-Interview-Questions-And-Answers/HEAD/interview/persian/concurrency.md -------------------------------------------------------------------------------- /interview/persian/concurrency_patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbardia72/Go-Interview-Questions-And-Answers/HEAD/interview/persian/concurrency_patterns.md -------------------------------------------------------------------------------- /interview/persian/data_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbardia72/Go-Interview-Questions-And-Answers/HEAD/interview/persian/data_type.md -------------------------------------------------------------------------------- /interview/persian/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbardia72/Go-Interview-Questions-And-Answers/HEAD/interview/persian/interface.md -------------------------------------------------------------------------------- /roadmap/persian/golang.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software-engineer/persian/software_engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbardia72/Go-Interview-Questions-And-Answers/HEAD/software-engineer/persian/software_engineer.md --------------------------------------------------------------------------------