Initial version of golang examples.
commit
6795612268
|
@ -0,0 +1,3 @@
|
||||||
|
module examples/control_blocks
|
||||||
|
|
||||||
|
go 1.16
|
|
@ -0,0 +1,3 @@
|
||||||
|
module examples/hello
|
||||||
|
|
||||||
|
go 1.18
|
|
@ -0,0 +1,7 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
fmt.Println("Hello World!!!")
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
module examples/rand
|
||||||
|
|
||||||
|
go 1.16
|
|
@ -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)
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
module examples/time
|
||||||
|
|
||||||
|
go 1.16
|
|
@ -0,0 +1,11 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
fmt.Println("Welcome to the playground!")
|
||||||
|
fmt.Println("The time is", time.Now())
|
||||||
|
}
|
Loading…
Reference in New Issue