Hey! Ich lerne gerade Go Lang und mache mir einige grundlegende Notizen zu meinem Konzept, die ich aber auch einfach hier veröffentlichen würde. Sie sind nicht gut durchdacht oder gut geschrieben, aber ich mache mir nur von Zeit zu Zeit Notizen als Referenz.
Ich besuche den Udemy-Kurs von Maximilian Schwarzmüller,
func calculateFutureValue(investmentAmount, expectedReturn, years float64) (fv float64, rfv float64) { fv = (investmentAmount) * math.Pow(1+expectedReturn/100, float64(years)) rfv = fv / math.Pow(1+inflationRate/100, years) return }
go mod init example.com/bank
wantsCheckBalance := choice == 1
if choice == 1 || choice == 2 { }
if choice == 1 { fmt.Println("Your Balance is", accountBalance) } else if choice == 2 { }
accountBalance += depositAmount //which equals to accountBalance = accountBalance + depositAmount
Das obige ist der detaillierte Inhalt vonGO lernen: 06. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!