aboutsummaryrefslogtreecommitdiff
path: root/test/native
diff options
context:
space:
mode:
authorClombrong <cromblong@egregore.fun>2025-06-25 10:26:31 +0200
committerClombrong <cromblong@egregore.fun>2025-06-25 10:26:31 +0200
commitb232ea90be69cfa1af58503405782786b8e45421 (patch)
tree6fdf3d73fb7eb3b7d9b03aba3372fd3194b70eb4 /test/native
parent06f7d130f9e7370bcbe0801986b767d5249372b8 (diff)
feat(native_hello): new test for native OCaml
Diffstat (limited to 'test/native')
-rw-r--r--test/native/dune2
-rw-r--r--test/native/native_hello.ml2
2 files changed, 4 insertions, 0 deletions
diff --git a/test/native/dune b/test/native/dune
new file mode 100644
index 0000000..6ce5a45
--- /dev/null
+++ b/test/native/dune
@@ -0,0 +1,2 @@
+(test
+ (name native_hello))
diff --git a/test/native/native_hello.ml b/test/native/native_hello.ml
new file mode 100644
index 0000000..ea57e57
--- /dev/null
+++ b/test/native/native_hello.ml
@@ -0,0 +1,2 @@
+let () =
+ print_endline "Hello, world!"