RosettaCodeData/Task/Conditional-structures/Go/conditional-structures-4.go

6 lines
71 B
Go
Raw Permalink Normal View History

2018-08-17 15:15:24 +01:00
if x := fetchSomething(); x > 0 {
2013-04-10 16:57:12 -07:00
DoPos(x)
} else {
DoNeg(x)
}