This commit is contained in:
2023-09-27 12:45:28 +02:00
parent 210080fe2f
commit c0e9c85775
7 changed files with 35 additions and 2 deletions

13
Section3/exercice6.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import "fmt"
func main() {
SayHello()
}
func SayHello() {
fmt.Println("Hello package v1.0.0!")
var x int = 10
_ = x
}