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
+5.3k Unix/Linux/MacOSx : How to remove an environment variable ?
+27.3k Golang : Convert CSV data to JSON format and save to file
+6.5k Golang : Warp text string by number of characters or runes example
+13.5k Golang : reCAPTCHA example
+19.9k Golang : Convert(cast) bytes.Buffer or bytes.NewBuffer type to io.Reader
+5.6k Swift : Get substring with rangeOfString() function example
+4.9k Google : Block or disable caching of your website content
+9.6k Golang : Detect number of active displays and the display's resolution
+14.8k Golang : Basic authentication with .htpasswd file
+5.1k Python : Create Whois client or function example
+20.1k Golang : Count number of digits from given integer value
+6.8k Get Facebook friends working in same company