STRING* out = "test";

This is wrong and I think in the most recent A7/A8 version this should return a sytax error. Define your string outside a function, or like this:

STRING* out = str_create("test");

EDIT: Damn, two people were faster than me. The var thing could also be an issue, because the var that is returned gets an implicit int cast.

Last edited by Lukas; 08/15/10 21:41.