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