diff options
Diffstat (limited to 'conversions.lua')
-rw-r--r-- | conversions.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/conversions.lua b/conversions.lua new file mode 100644 index 0000000..04a3d70 --- /dev/null +++ b/conversions.lua @@ -0,0 +1,7 @@ +-- conversions --
+
+c = 0xdeadbeef
+h = tonumber(c)
+
+print(h)
+
|