RosettaCodeData/Task/Call-a-function-in-a-shared-library/Ol/call-a-function-in-a-shared-library-1.ol

8 lines
153 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(import (otus ffi))
(define self (load-dynamic-library #f))
(define strdup
(self type-string "strdup" type-string))
(print (strdup "Hello World!"))