Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- Go
- Ada
- C++
- C++
- C#
- Dart
- Fortran
- Haskell
- JS
- JS
- Java
- Java
- Java
- Pascal
- Perl
- Python
- Python
- Python
- Python
- Ruby
- Rust
a := []int{1, 12, 42}
for i, j := range a {
if i > 0 {
fmt.Print(", ")
}
fmt.Print(j)
}
Console.Write(string.Join(", ", a));
print(a.join(", "));
integer, dimension(:), allocatable :: a
a = [1,12,42]
write (*,'(*(I0:", "))') a
Looking at the format string: I0 means an integer of minimum width, the colon with the means output what follows if there are more items. The asterisk repeat the following brackets until all I/O has been exhausted.
let a = [1, 12, 42] in
putStrLn $ intercalate ", " (show <$> a)
let s = a.reduce((x, y) => `${x}, ${y}`)
console.debug(s)
let s = a.join(', ')
console.debug(s)
String s = of(a)
.mapToObj(String::valueOf)
.reduce((x, y) -> x + ", " + y)
.get();
out.println(s);
import static java.lang.System.out;
import static java.util.stream.Collectors.joining;
import static java.util.stream.IntStream.of
String s = of(a)
.mapToObj(String::valueOf)
.collect(joining(", "));
out.println(s);
var
a: array of integer;
i: Integer;
begin
a := [1,12,42];
for i := Low(a) to High(a) do
begin
write(a[i]);
if i <> High(a) then write(', ');
end;
end.
@a = qw (1 12 42);
print join(", ",@a),"\n";
print(a[0], end='')
for x in a[1:]:
print(',', x, end='')
print(', '.join(map(str, a)))
a = [1, 12, 42]
print(*a, sep=', ')