Starting new exercise
This commit is contained in:
parent
24f0adac09
commit
6f3370693d
|
@ -0,0 +1,3 @@
|
|||
module range
|
||||
|
||||
go 1.21.6
|
|
@ -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() {
|
||||
|
||||
}
|
Loading…
Reference in New Issue