Content deleted Content added
take out tag per WP:OVERTAG -- four tags on an article discourages people from trying to improve it |
|||
Line 232:
std::cout << d.x << std::endl;
// outputs 5, because d references the
// same object to which c points
// or, since C++23:
std::println("{}", d.x);
</syntaxhighlight>
| <syntaxhighlight lang="java">
System.out.println(d.x);
|