From 0385817bb1301a778bb33f8405a435293b9f8905 Mon Sep 17 00:00:00 2001 From: David Moc Date: Thu, 5 Mar 2026 23:38:49 +0100 Subject: Pushing to repo for safety. --- tests/test1.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/test1.c (limited to 'tests/test1.c') diff --git a/tests/test1.c b/tests/test1.c new file mode 100644 index 0000000..8c19bb7 --- /dev/null +++ b/tests/test1.c @@ -0,0 +1,10 @@ +int main() { + int x = 10; + int *p = &x; + *p = 20; + if (*p == 20) { + return 1; + } else { + return 0; + } +} \ No newline at end of file -- cgit v1.2.3