33 lines
375 B
Go
33 lines
375 B
Go
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() {
|
|
|
|
}
|