When I run Unix.time;;
in UTop (macOS), I get this error:
Error: Unbound module Unix
Hint: Did you mean Unit?
Does anyone know how to solve this? We couldn’t fine anything online, including Stack Overflow.
When I run Unix.time;;
in UTop (macOS), I get this error:
Error: Unbound module Unix
Hint: Did you mean Unit?
Does anyone know how to solve this? We couldn’t fine anything online, including Stack Overflow.
Did you load the unix
library with
#require "unix";;
?
OMG! That did it! How simple! Thank you!