aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorclyne <clyne@bitgloo.com>2020-06-26 11:16:59 -0400
committerGitHub <noreply@github.com>2020-06-26 11:16:59 -0400
commitaa85b760a89452c7a07830860b9ab3aa6e51ff09 (patch)
tree333a907cb9cd141df3bc5af642758d72339aed5b /README.md
parent0f38f29202f4b7184d35cd0145c0172be4ff126d (diff)
Added compiler explorer link
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9c1ebcf..03470da 100644
--- a/README.md
+++ b/README.md
@@ -20,6 +20,8 @@ puts(to_string<30, 2>); // produces "11110"
With `to_string`, all that will be found in program disassembly are the resulting string literals, as if you wrote the strings yourself.
+Try it [on Compiler Explorer](https://godbolt.org/z/T-MFoh).
+
**Known issues:**
* With C++17 GCC, `to_string` must be used to initialize variables; otherwise, the integer-string conversion is done at run-time.