Initial version of golang examples.

master
Tomasz Półgrabia 2022-07-22 13:07:16 +02:00
commit 6795612268
8 changed files with 54 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Golang examples repository
TODO

3
control_blocks/go.mod Normal file
View File

@ -0,0 +1,3 @@
module examples/control_blocks
go 1.16

3
hello/go.mod Normal file
View File

@ -0,0 +1,3 @@
module examples/hello
go 1.18

7
hello/hello.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello World!!!")
}

3
rand/go.mod Normal file
View File

@ -0,0 +1,3 @@
module examples/rand
go 1.16

21
rand/rand.go Normal file
View File

@ -0,0 +1,21 @@
package main
import (
"fmt"
"math/rand"
)
func swap(x, y string) (string, string) {
return y, x;
}
func add(x int, y int) int {
return x + y;
}
func main() {
fmt.Println("My favourite number is", rand.Intn(10))
fmt.Println("Sum is", add(4, 5))
a, b := swap("Hello", "World")
fmt.Println("A: ", a, "B: ", b)
}

3
time/go.mod Normal file
View File

@ -0,0 +1,3 @@
module examples/time
go 1.16

11
time/time.go Normal file
View File

@ -0,0 +1,11 @@
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("Welcome to the playground!")
fmt.Println("The time is", time.Now())
}