RosettaCodeData/Task/CRC-32/Elixir/crc-32.elixir

8 lines
163 B
Text
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
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")