Explorar el Código

added toString()

Nicolas Cannasse hace 20 años
padre
commit
68b8656960
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  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;
+
 }