enum
{
__1 = "test",
__2,
__3 = 0
}
println in console:
test
0
0
but according to doc https://developer.garmin.com/connect-iq/monkey-c/functions/
Note that assigning anything other than an integer will cause an error.
enum
{
__1 = "test",
__2,
__3 = 0
}
println in console:
test
0
0
but according to doc https://developer.garmin.com/connect-iq/monkey-c/functions/
Note that assigning anything other than an integer will cause an error.