]> code.bitgloo.com Git - clyne/constexpr-to-string.git/commitdiff
Added compiler explorer link
authorclyne <clyne@bitgloo.com>
Fri, 26 Jun 2020 15:16:59 +0000 (11:16 -0400)
committerGitHub <noreply@github.com>
Fri, 26 Jun 2020 15:16:59 +0000 (11:16 -0400)
README.md

index 9c1ebcf2ee540b0b1e5f713cffbc23c1d89679c2..03470da9a358372bcad838e1f05cc3daaf91fc9f 100644 (file)
--- 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.