18 lines
345 B
Go
18 lines
345 B
Go
package main
|
|
|
|
var num float64
|
|
var name string
|
|
|
|
func main() {
|
|
nameget()
|
|
|
|
startup(num)
|
|
|
|
compare(num)
|
|
}
|
|
|
|
// You know? This is pretty fun, might be useless to organize so little code like this but it's nice seeing
|
|
// how clean everything afterwards
|
|
|
|
// Until I learn proper error handling and OS/Network interactions I'll be having fun like this
|