RosettaCodeData/Task/Detect-division-by-zero/Ela/detect-division-by-zero-2.ela

3 lines
36 B
Text
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
x /. 0 = None
x /. y = Some (x / y)