7 lines
139 B
Text
7 lines
139 B
Text
import "stdio.h";;
|
|
import "string.h";;
|
|
|
|
let s1:string = "Hello World!";;
|
|
let s2:char* = strdup(cstring(s1));;
|
|
puts(s2);;
|
|
free(s2 as void*)
|