Module

Python.IO.Unsafe

Package
purescript-show-python
Repository
purescript-python/purescript-show-python

#show Source

show :: forall a. a -> Effect String

Equal to str in Python but wrapped in Effect monad.

#printLn Source

printLn :: forall a. a -> Effect Unit

Equal to print in Python but wrapped in Effect monad.

#repr Source

repr :: forall a. a -> Effect String

Equal to repr in Python but wrapped in Effect monad.

#assertMsg Source

assertMsg :: Boolean -> String -> Effect Unit

Equal to assert cond, msg in Python but wrapped in Effect monad.

#assert Source

assert :: Boolean -> Effect Unit

See assert_