Outils pour utilisateurs

Outils du site


fr:code:core:stdio

Stdio

Fonctions

print

Écrit une ligne sur la sortie standard.

Syntaxe

Stdio.print(texte);

Arguments

  1. texte - (string) le texte à écrire

Renvoie

  • (Stdio) cet Stdio

Exemple

Stdio.print("Bonjour tout le monde !");

[TODO:Translate]

println

Writes a line to the standard output. A new line character is automatically added.

Added in Actionaz 3.0.1.

Syntax

Stdio.println(text);

Arguments

  1. text - (string) the text to write

Returns

  • (Stdio) this Stdio

Example

Stdio.println("Hello World!");

printWarning

Écrit une ligne dans la sortie standard en utilisant un préfixe d'avertissement.

Syntaxe

Stdio.printWarning(texte);

Arguments

  1. texte - (string) le texte à écrire

Renvoie

  • (Stdio) cet Stdio

Exemple

Stdio.printWarning("Ceci est important !");

[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

Stdio.printlnWarning(text);

Arguments

  1. text - (string) the text to write

Returns

  • (Stdio) this Stdio

Example

Stdio.printlnWarning("This is important!");

printError

Écrit une ligne dans la sortie standard en utilisant un préfixe d'erreur.

Syntaxe

Stdio.printError(texte);

Arguments

  1. texte - (string) le texte à écrire

Renvoie

  • (Stdio) cet Stdio

Exemple

Stdio.printError("Ceci est critique !");

[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

Stdio.printlnError(text);

Arguments

  1. text - (string) the text to write

Returns

  • (Stdio) this Stdio

Example

Stdio.printlnError("This is critical!");
fr/code/core/stdio.txt · Dernière modification : 2021/02/13 11:23 de 127.0.0.1