Outils pour utilisateurs

Outils du site


fr:code:core:stdio

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
fr:code:core:stdio [2014/10/31 12:29] – external edit 127.0.0.1fr:code:core:stdio [2021/02/13 11:23] (Version actuelle) – modification externe 127.0.0.1
Ligne 21: Ligne 21:
 Stdio.print("Bonjour tout le monde !"); Stdio.print("Bonjour tout le monde !");
 </code> </code>
 + 
 +[TODO:Translate]
  
 +
 +==== println ====
 +Writes a line to the standard output.
 +A new line character is automatically added.
 +
 +//Added in Actionaz 3.0.1.//
 +
 +=== Syntax ===
 +<code javascript>
 +Stdio.println(text);
 +</code>
 +
 +=== Arguments ===
 +  - text - (string) the text to write
 +
 +=== Returns ===
 +  * (Stdio) this Stdio
 +
 +=== Example ===
 +<code javascript>
 +Stdio.println("Hello World!");
 +</code>
 + 
 ==== printWarning ==== ==== printWarning ====
 Écrit une ligne dans la sortie standard en utilisant un préfixe d'avertissement. Écrit une ligne dans la sortie standard en utilisant un préfixe d'avertissement.
Ligne 40: Ligne 65:
 Stdio.printWarning("Ceci est important !"); Stdio.printWarning("Ceci est important !");
 </code> </code>
 +
 + [TODO:Translate]
 +==== printlnWarning ====
 +Writes a line in the standard output using a warning prefix.
 +A new line character is automatically added.
 +
 +//Added in Actionaz 3.0.1.//
 +
 +=== Syntax ===
 +<code javascript>
 +Stdio.printlnWarning(text);
 +</code>
 +
 +=== Arguments ===
 +  - text - (string) the text to write
 +
 +=== Returns ===
 +  * (Stdio) this Stdio
 +
 +=== Example ===
 +<code javascript>
 +Stdio.printlnWarning("This is important!");
 +</code>
 +
  
 ==== printError ==== ==== printError ====
Ligne 58: Ligne 107:
 <code javascript> <code javascript>
 Stdio.printError("Ceci est critique !"); Stdio.printError("Ceci est critique !");
 +</code>
 +
 + [TODO:Translate]
 + 
 +==== printlnError ====
 +Writes a line in the standard output using an error prefix.
 +A new line character is automatically added.
 +
 +//Added in Actionaz 3.0.1.//
 +
 +=== Syntax ===
 +<code javascript>
 +Stdio.printlnError(text);
 +</code>
 +
 +=== Arguments ===
 +  - text - (string) the text to write
 +
 +=== Returns ===
 +  * (Stdio) this Stdio
 +
 +=== Example ===
 +<code javascript>
 +Stdio.printlnError("This is critical!");
 </code> </code>
fr/code/core/stdio.1414758542.txt.gz · Dernière modification : 2021/02/13 11:23 (modification externe)