RosettaCodeData/Task/CRC-32/Elixir/crc-32.elixir
2015-11-18 06:14:39 +00:00

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")