⚠ Switch to EXCALIDRAW VIEW in the MORE OPTIONS menu of this document. ⚠ You can decompress Drawing data with the command palette: ‘Decompress current Excalidraw file’. For more info check in plugin settings under ‘Saving’

Excalidraw Data

Text Elements

include <stdio.h>

int GLOBAL = 5;

int main(){ int local = 10;

// local exists (first preference)
// GLOBAL exists

return 0;

}

// GLOBAL STILL EXIST // local is destroyed as main ended.