ocaml/tests/basic-test.sh

11 lines
192 B
Bash
Raw Normal View History

2024-06-19 07:25:18 +00:00
#!/bin/bash -
set -e
set -x
# Compile a trivial program and run it.
echo 'print_endline "hello, world"' > hello.ml
ocamlc.opt hello.ml -o hello
./hello
ocamlopt.opt hello.ml -o hello
./hello