Conversions to "String"

BlitzMax Forums/BlitzMax Programming/Conversions to "String"

Fabian.(Posted 2005) [#1]
This doesn't work:
Strict

Print ( String 5 ).Find ( "X" )

But why?


Rimmsy(Posted 2005) [#2]
Try: Print String(5).Find("X")

You're casting 5 into a string so you have to put the parenthesis in the right place.


tonyg(Posted 2005) [#3]
It might be worth posting this in one of the other forums if you're not sure it's a bug.


Fabian.(Posted 2005) [#4]
Ok!
I'll try and post bugs only if they're bugs at all.
Sorry for posting here!