6 lines
87 B
C++
6 lines
87 B
C++
|
#include <cstdint>
|
||
|
int main () {
|
||
|
int32_t myvar = -1;
|
||
|
return myvar; // break here
|
||
|
}
|