Skip to content

Instantly share code, notes, and snippets.

@stisa
Created January 31, 2017 18:10
Show Gist options
  • Select an option

  • Save stisa/65e7abbe5a619c1dfe8a0d007e48d07b to your computer and use it in GitHub Desktop.

Select an option

Save stisa/65e7abbe5a619c1dfe8a0d007e48d07b to your computer and use it in GitHub Desktop.
Ugly js ffi example, the name of the module is important
proc setItem (item:cstring,to:cstring){.importc, exportc:"localStorage.$1"}
proc getItem (item:cstring):string{.importc, exportc:"localStorage.$1"}
proc log(x:string) = {.emit :"console.log(`x`);"}
localStorage.setItem("hi","world")
log localStorage.getItem("hi") #> world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment