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

8 lines
231 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
; simple FFI interface on Mac OSX
(import "libc.dylib" "strdup")
(println (get-string (strdup "hello world")))
; or extended FFI interface on Mac OSX
(import "libc.dylib" "strdup" "char*" "char*")
(println (strdup "hello world"))