ExternalLibrary subclass: #Testlib instanceVariableNames: '' classVariableNames: '' poolDictionaries: '' category: 'Nim'! !Testlib class methodsFor: 'primitives' stamp: 'gk 11/2/2014 13:05'! ffiAdd: a with: b "self ffiAdd: 13 with: 29" ^self externalCallFailed! ffiConcat: a with: b "self ffiConcat: 'a' with: 'b' " ^self externalCallFailed! ffiFoo "self ffiFoo" ^self externalCallFailed! ffiHello "self ffiHello" "long is int in Nim" ^self externalCallFailed! ffiLength: x "self ffiLen: 'hey' " ^self externalCallFailed! ! !Testlib class methodsFor: 'accessing' stamp: 'gk 2/18/2015 23:13'! moduleName ^'testlib'! !