RosettaCodeData/Task/Call-a-foreign-language-function/Mathematica/call-a-foreign-language-function.math

4 lines
155 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Needs["NETLink`"];
externalstrdup = DefineDLLFunction["_strdup", "msvcrt.dll", "string", {"string"}];
Print["Duplicate: ", externalstrdup["Hello world!"]]