Tasmota/lib/libesp32/berry/tests/int.be

9 lines
138 B
Plaintext
Raw Normal View History

2022-04-20 21:57:07 +01:00
#- toint() converts any instance to int -#
class Test_int
def toint()
return 42
end
end
t=Test_int()
assert(int(t) == 42)