1#include <emscripten.h> 2 3int main() { 4 EM_ASM({ 5 thisVarDoesNotExist++; 6 thisVarDoesNotExistEither++; 7 }); 8} 9 10