Golang : Valued expressions and functions example
Writing this simple example down here as a reminder for myself on how to use valued expressions in Golang. Nothing complicated, just a simple reminder for my old brain.
Here you go!
package main
import (
"fmt"
)
func main() {
// functions
g := func(x int) int { return x * 9 }
f := func() int { return 9 }
fmt.Println(g(f()))
// arithmetic
fmt.Println("One plus five is ", 1+5)
value := 2
fmt.Println(value * 2) // 4
fmt.Println(float64(value*16) / 2)
}
Output :
81
One plus five is 6
4
16
See also : Golang : Display list of time zones with GMT
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+10.2k Golang : cannot assign type int to value (type uint8) in range error
+28.4k Get file path of temporary file in Go
+11.6k Golang : Gorilla web tool kit secure cookie example
+8.9k Golang : Get SPF and DMARC from email headers to fight spam
+9.5k Javascript : Read/parse JSON data from HTTP response
+6.7k Default cipher that OpenSSL used to encrypt a PEM file
+7k Golang : A simple forex opportunities scanner
+9k Golang : Gonum standard normal random numbers example
+9.6k PHP : Get coordinates latitude/longitude from string
+15.4k Golang : Force download file example
+22.5k Golang : Set and Get HTTP request headers example