7 lines
163 B
Text
7 lines
163 B
Text
defmodule Test do
|
|
def crc32(str) do
|
|
IO.puts :erlang.crc32(str) |> Integer.to_string(16)
|
|
end
|
|
end
|
|
|
|
Test.crc32("The quick brown fox jumps over the lazy dog")
|