From 111e71e1511b2abff9176bd6c714c8da796f770e Mon Sep 17 00:00:00 2001 From: lemon Date: Sun, 16 Nov 2025 12:11:18 +0100 Subject: basic automated testing --- test/01-hello.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/01-hello.c (limited to 'test/01-hello.c') diff --git a/test/01-hello.c b/test/01-hello.c new file mode 100644 index 0000000..69a8354 --- /dev/null +++ b/test/01-hello.c @@ -0,0 +1,8 @@ +/* EXPECT: +hello world +*/ + +#include +int main(int argc, char **argv) { + printf("hello world\n"); +} -- cgit v1.2.3