9 lines
134 B
Text
9 lines
134 B
Text
|
|
/* call_foreign_language_function.wren */
|
||
|
|
|
||
|
|
class C {
|
||
|
|
foreign static strdup(s)
|
||
|
|
}
|
||
|
|
|
||
|
|
var s = "Hello World!"
|
||
|
|
System.print(C.strdup(s))
|