RosettaCodeData/Task/Call-a-foreign-language-fun.../PicoLisp/call-a-foreign-language-fun...

6 lines
165 B
Plaintext

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