RosettaCodeData/Task/Call-a-foreign-language-function/PicoLisp/call-a-foreign-language-function-3.l

6 lines
165 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(prinl "Calling custom so/dll library...")
(set 'A NIL)
(set 'A (native "./duptest.so" "duptest" 'S "abc"))
(prinl "A=" A)
(when (not (= A NIL)) (prinl "Success!"))