From 0d5d820f4fb34501453d0223fd32e634e1fa5efd Mon Sep 17 00:00:00 2001 From: Leaf Garland Date: Sun, 24 May 2020 21:29:20 +1200 Subject: [PATCH] Remove cook code --- examples/numarray/test/numarray_tests.janet | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/examples/numarray/test/numarray_tests.janet b/examples/numarray/test/numarray_tests.janet index 2e682568..5ae34bba 100644 --- a/examples/numarray/test/numarray_tests.janet +++ b/examples/numarray/test/numarray_tests.janet @@ -1,10 +1,4 @@ -(import cook) - -(cook/make-native - :name "numarray" - :source @["numarray.c"]) - -(import build/numarray :as numarray) +(import build/numarray) (def a (numarray/new 30)) (print (get a 20))