From: clyne Date: Fri, 26 Jun 2020 15:16:59 +0000 (-0400) Subject: Added compiler explorer link X-Git-Url: https://code.bitgloo.com/?a=commitdiff_plain;h=aa85b760a89452c7a07830860b9ab3aa6e51ff09;p=clyne%2Fconstexpr-to-string.git Added compiler explorer link --- 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.