Quote from: LAPIN on March 07, 2010, 09:43:45 PM
Version 0.5 is out
i added a simple function check with this version. I also provided a list of "built-in" functions.
nice
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: LAPIN on March 07, 2010, 09:43:45 PM
Version 0.5 is out
i added a simple function check with this version. I also provided a list of "built-in" functions.

)

string FixedToString(fixed f) {
int d = FixedToInt(f);
int r = FixedToInt((f - d) * 100);
string rs = IntToString(r);
if (r <= 0) { r = 1; }
while (r < 10) { rs = "0" + rs; r *= 10; }
return IntToString(d) + "." + rs;
}

)