RosettaCodeData/Task/Conditional-structures/Go/conditional-structures-4.go
2018-08-17 15:15:24 +01:00

5 lines
71 B
Go

if x := fetchSomething(); x > 0 {
DoPos(x)
} else {
DoNeg(x)
}