Content deleted Content added
→Conditional statements: fix syntaxhighlight errors |
m →Standard stream I/O: {{code}} |
||
Line 3,119:
|-
| [[Java (programming language)|Java]]
|
| <code>System.out.print(''x'');</code><br />or<br /><code>System.out.[[printf]](''format'', ''x'');</code><br />or<br /><code>System.out.println(''x'');</code>
| <code>System.err.print(''x'');</code><br />or<br /><code>System.err.[[printf]](''format'', ''x'');</code><br />or<br /><code>System.err.println(''x'');</code>
|-
| [[Go (programming language)|Go]]
| <code>fmt.Scan(&''x'')</code><br />or<br /><code>fmt.[[Scanf]](''format'', &''x'')</code><br />or<br />
| <code>fmt.Println(''x'')</code><br />or<br /><code>fmt.[[Printf]](''format'', ''x'')</code>
| <code>fmt.Fprintln(os{{Not a typo|.}}Stderr,
|-
| [[Swift (programming language)|Swift]]
|