Browse Source

added toString()

Nicolas Cannasse 20 years ago
parent
commit
68b8656960
1 changed files with 2 additions and 0 deletions
  1. 2 0
      std/String.hx

+ 2 - 0
std/String.hx

@@ -15,4 +15,6 @@ extern class String {
 	function split( delimiter : String ) : Array<String>;
 	function substr( pos : Int, len : Int ) : String;
 
+	function toString() : String;
+
 }