Currently we cannot patch global variables that are locally binded. This should only take an hour or so to handle. ``` int foo(void) { static int data_var = 5; printf("%d\n", data_var); } ```