IO.write
You're seeing just the function
write
, go back to IO module for more information.
Specs
write(device(), chardata() | String.Chars.t()) :: :ok
Writes chardata
to the given device
.
By default, the device
is the standard output.
Examples
IO.write("sample")
#=> sample
IO.write(:stderr, "error")
#=> error