Starting new exercise

This commit is contained in:
raul 2024-01-30 06:47:29 +01:00
parent 24f0adac09
commit 6f3370693d
2 changed files with 35 additions and 0 deletions

3
golangr/range/go.mod Normal file
View File

@ -0,0 +1,3 @@
module range
go 1.21.6

32
golangr/range/main.go Normal file
View File

@ -0,0 +1,32 @@
package main
import (
"fmt"
)
// https://golangr.com/range
// TODO: Create something similar to the array exercise but cleaner and better
var notas []float64
func main() {
fmt.Print("\033[H\033[2J")
fmt.Println("Welcome")
}
func msg() {
fmt.Print("\033[H\033[2J")
println()
}
func choices() {
fmt.Print("\033[H\033[2J")
}
func average() {
}
func minmax() {
}