crc32 is a number

This commit is contained in:
2021-10-30 21:33:28 +03:00
parent 54f368e205
commit d3b23d2f89
3 changed files with 10 additions and 10 deletions

View File

@@ -21,7 +21,7 @@ local attempts = 0
repeat
local random_crc32 = crc32.hash(attempts)
edit_file('i_know_my_crc32.lua', 13, "local crc32_expected = '" .. random_crc32 .. "'")
edit_file('i_know_my_crc32.lua', 13, "local crc32_expected = " .. random_crc32)
local match = require('i_know_my_crc32')
attempts = attempts + 1
print(attempts)

View File

@@ -10,7 +10,7 @@ end
local content = read_all(this_file)
local crc32_result = crc32.hash(content)
local crc32_expected = ''
local crc32_expected = 000000000
print('My expected crc32 checksum is ' .. crc32_expected)
print('My own crc32 checksum is ' .. crc32_result)