An open API service indexing awesome lists of open source software.

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

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.