From d9b5b67e9457014c4e0d06f005e410c5cb2b7b88 Mon Sep 17 00:00:00 2001 From: Kartik Singh Date: Thu, 12 Dec 2024 09:22:48 -0800 Subject: [PATCH] Debug print --- examples/libcalc/exhaust_heap.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/libcalc/exhaust_heap.py b/examples/libcalc/exhaust_heap.py index 225c751e..ba3191e1 100644 --- a/examples/libcalc/exhaust_heap.py +++ b/examples/libcalc/exhaust_heap.py @@ -1,3 +1,8 @@ +from ctypes import * +from ctypes.util import find_library + +print(find_library("sbcl_librarian")) + import sbcl_librarian.wrapper import calc as libcalc import sys