Conditional Statements
Use conditions to run different code paths based on logical tests.
if score >= 90 { fmt.Println("A") }Try it Yourself
Run this GO example in your local environment or course sandbox.
Go Tutorial
Use conditions to run different code paths based on logical tests.
if score >= 90 { fmt.Println("A") }