https://github.com/am2022/go-examples
go examples have example for learning go
https://github.com/am2022/go-examples
go go-examples golang learn learn-go learn-golang learning learning-go learning-golang
Last synced: 3 months ago
JSON representation
go examples have example for learning go
- Host: GitHub
- URL: https://github.com/am2022/go-examples
- Owner: am2022
- License: mit
- Created: 2022-12-01T06:00:08.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-11T17:58:24.000Z (about 3 years ago)
- Last Synced: 2025-05-14T12:18:28.679Z (8 months ago)
- Topics: go, go-examples, golang, learn, learn-go, learn-golang, learning, learning-go, learning-golang
- Language: Go
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-examples
## go examples repository have example for learning go
## hello world program :
> this is the first program, when you want to learn new programming language, that print's "hello world".
## fibonacci program :
> this is a fibonacci program; you can open the fibonacci folder after that you can see two type of that: 1.fibonacci.go -> (all of the code is in main function) 2.fibonacci(func).go -> (i use another function for practice functions in go)
## even_checker program :
> even checker give's a number and print that it was even or odd;
## max_number program :
> max_number give's number and show biggest number that you entered; you can stop the program by entering 0 in input part.