You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
203 B
9 lines
203 B
3 years ago
|
set(listvar a b c d e)
|
||
|
|
||
|
list(GET listvar
|
||
|
18446744073709551616 # 2^64
|
||
|
2147483648 # 2^31
|
||
|
4294967296 # 2^32; errors out-of-range as -2147483643 due to underflow
|
||
|
out)
|
||
|
message("ERANGE: -->${out}<--")
|