mirror of
https://github.com/AdaCore/why3.git
synced 2026-02-12 12:34:55 -08:00
12 lines
219 B
Plaintext
12 lines
219 B
Plaintext
module PrintStream
|
|
|
|
type print_stream = private mutable { }
|
|
|
|
val print (stream : print_stream) (v : 'a) : unit
|
|
writes { stream }
|
|
|
|
val println (stream : print_stream) (v : 'a) : unit
|
|
writes { stream }
|
|
|
|
end
|