I clearly don't understand how Power works as this code
Produces this output:
Why aren't the numbers (bar 1) all even?
Local check_flag:Int = 0 For Local conflict_id:Int = 0 Until 8 check_flag = 2^conflict_id DebugLog "2^" +conflict_id + " = " +check_flag Next
Produces this output:
DebugLog:2^0 = 1 DebugLog:2^1 = 2 DebugLog:2^2 = 4 DebugLog:2^3 = 7 DebugLog:2^4 = 15 DebugLog:2^5 = 32 DebugLog:2^6 = 63 DebugLog:2^7 = 127
Why aren't the numbers (bar 1) all even?