Files
why3/examples/hello-world.mlw
Cláudio Belo Lourenço 6d564d3e7f Printer for string literals with escape sequences.
CVC4, and Z3 solvers currently supported. In alt-ergo, string literals
are being removed in the generated file.

OCaml extraction is also supported. CakeML should be fine as well.
2019-10-22 16:26:19 +02:00

8 lines
102 B
Plaintext

module Test
use string.String
use io.StdIO
let main = print_string ("\"Hello world!\"\n")
end