From db3809488805fbdcd9d726d9ed45ad7335812bd1 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 1 May 2026 22:43:13 +0300 Subject: remove examples in favour of tests + Might come up with proper examples at some point, but for now tests at least tell us if they're broken --- examples/ptrs.fwd | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 examples/ptrs.fwd (limited to 'examples/ptrs.fwd') diff --git a/examples/ptrs.fwd b/examples/ptrs.fwd deleted file mode 100644 index a1efc84..0000000 --- a/examples/ptrs.fwd +++ /dev/null @@ -1,21 +0,0 @@ -extern fwd_copy(auto x, (auto, auto) ok); -extern fwd_println(auto x); -extern fwd_intalloc((*int) ok); - -main() -{ - fwd_intalloc() => *int i; - fwd_copy(i) => *int i1, *int i2; - - /* convert raw pointer to reference, unsure if this should be a - * built-in or a library feature */ - fwd_null(i1) => { - fwd_println("Pointer was null"); - /* error out or something */ - } => &int i; - - fwd_println(i); - - /* Try uncommenting, deref of raw pointer is not allowed! */ - // i* + 20 => int something; -} -- cgit v1.2.3