RosettaCodeData/Task/Extend-your-language/J/extend-your-language-2.j

15 lines
319 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
f0=: [: smoutput 'neither option: ' , ":
f1=: [: smoutput 'first option: ' , ":
f2=: [: smoutput 'second option: ' , ":
f3=: [: smoutput 'both options: ' , ":
isprime=: 1&p:
iseven=: 0 = 2&|
f0`f1`f2`f3 if2 (isprime`iseven)"0 i.5
second option: 0
neither option: 1
both options: 2
first option: 3
second option: 4