26.08.2015, 20:40
How do i define and use functions with a string as the return.
With this i have one error in the main script ( argument type mismatch) (no errors in FS):
With this i have one error in the main script ( argument type mismatch) (no errors in FS):
Код:
foreign getSomeString();
global getSomeString() {
new test[20];
test = "This is a test";
return test;
}

