Import Upstream version 20180207
[hcoop/debian/mlton.git] / lib / cml / tests / print.sml
CommitLineData
7f918cf1
CE
1structure TextIO =
2 struct
3 open TextIO
4 fun print s =
5 MLton.Thread.atomically
6 (fn () => TextIO.print s)
7 end
8
9val print = TextIO.print