Print the contents of the map m to the standard output: keys and values.
#include <map> #include <iostream>
for (auto entry : m) { std::cout << entry.first << ": " << entry.second << "\n"; }
using System;
Console.WriteLine(string.Join(Environment.NewLine, m));
print(m);
IO.inspect m
import "fmt"
fmt.Printf("%q", m)
fmt.Println(m)
console.log(m);
console.table(m);
import java.util.Map;
System.out.println(m);
m.forEach((k, v) -> { out.println(k + " = " + v); });
import static java.lang.System.out;
m.entrySet().forEach(out::println);
uses Generics.Collections;
for APair in m do writeln(APair.Key, APair.Value);
print "$_: $m{$_}\n" for keys %m;
print(m)
puts m
println!("{:?}", m);
No security, no password. Other people might choose the same nickname.