Ruby Counter
Posted: Thu Jun 12, 2014 6:23 am
Is there some definitive book on Ruby that works wholly with Flowstone?
Where am i going wrong?
Code: Select all
def event i,v
if !defined? @count
@count = 127
end
if @in0 == True
@count = @count + 1
end
if @in1 == True
@count = @count - 1
end
output @count
end
Where am i going wrong?