Skip to content

Instantly share code, notes, and snippets.

@eyberg
Created September 29, 2023 22:20
Show Gist options
  • Save eyberg/1615cb7701ecb65536708da2716de0e6 to your computer and use it in GitHub Desktop.
Save eyberg/1615cb7701ecb65536708da2716de0e6 to your computer and use it in GitHub Desktop.
eyberg@s1:~/w$ cat nil.c
#include <stdio.h>
int main() {
int *bob = (int *)0x0;
*bob = 42;
printf("Value: %d\n", *bob);
int *tom;
printf("Value: %d\n", *tom);
}
eyberg@s1:~/w$ wasmer nil.wasm
Value: 42
Value: 42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment