Fix warning about :random module

This commit is contained in:
Josh Nussbaum
2016-12-02 09:55:42 -05:00
parent 56662386d3
commit 5d3ed8c0c6

View File

@@ -6,4 +6,4 @@ defmodule MyLib do
end
MyLib.puts("Hello World from C stdlib")
MyLib.printf("Random number: %d\n", :random.uniform(10))
MyLib.printf("Random number: %d\n", :rand.uniform(10))