RosettaCodeData/Task/Call-a-foreign-language-function/Smalltalk/call-a-foreign-language-function.st

8 lines
174 B
Smalltalk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Object subclass:'CallDemo'!
!CallDemo class methods!
strdup:arg
<cdecl: mustFree char* 'strdup' (char*) module:'libc'>
! !
Transcript showCR:( CallDemo strdup:'Hello' )