RosettaCodeData/Task/Amb/VBScript/amb-1.vb

12 lines
168 B
VB.net
Raw Permalink Normal View History

2015-02-20 09:02:09 -05:00
class ambiguous
dim sRule
public property let rule( x )
sRule = x
end property
public default function amb(p1, p2)
amb = eval(sRule)
end function
end class