Skip to content

Instantly share code, notes, and snippets.

@euank
Last active February 21, 2018 07:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save euank/d32b4bcd9ab0d0d4a1366614d80b939b to your computer and use it in GitHub Desktop.
Save euank/d32b4bcd9ab0d0d4a1366614d80b939b to your computer and use it in GitHub Desktop.
ffi = require "ffi"
null = ffi.new("void*", nil)
print("not null: ", not null)
print("null == nil: ", null == nil)
--- Prints:
--
-- not null: false
-- null == nil: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment