Last active
February 27, 2022 20:12
-
-
Save nidhi-canopas/7f6bec4b22b4bfdbc9b5993f3ec22dcb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "fmt" | |
func main() { | |
smallerNo := 5 | |
largerNo := 25 | |
result := float32(smallerNo) / float32(largerNo) | |
fmt.Println("result : ", result) | |
} | |
output: | |
result : 0.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment