Last active
February 21, 2018 07:28
-
-
Save euank/d32b4bcd9ab0d0d4a1366614d80b939b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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