RosettaCodeData/Task/Call-a-foreign-language-function/PicoLisp/call-a-foreign-language-function-3.l
2023-07-01 13:44:08 -04:00

5 lines
165 B
Text

(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!"))