Skip to content

Instantly share code, notes, and snippets.

@nidhi-canopas
Last active February 27, 2022 20:12
Show Gist options
  • Save nidhi-canopas/7f6bec4b22b4bfdbc9b5993f3ec22dcb to your computer and use it in GitHub Desktop.
Save nidhi-canopas/7f6bec4b22b4bfdbc9b5993f3ec22dcb to your computer and use it in GitHub Desktop.
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