Content deleted Content added
→Python: Tighten up: no need to explain all the fmt alternatives. |
→Java: Clearly state that Java does not have interpolated strings, and uses formatting instead. Remove misleading code, since that is *not* interpolation. |
||
Line 147:
=== Java ===
{{Main article|Java (programming language)}}
{{as of|2022}}, Java does not have interpolated strings, and instead uses format functions, notably the <code>MessageFormat</code> class (Java version 1.1 and above) and the static method <code>String.format</code> (Java version 5 and above).
=== JavaScript ===
|