hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 63f94f4035de35fed61cdd1f7023af5f1b5b3248
parent ff71edc2c9ee44b580990f0303e769ef619c6ee0
Author: Drew DeVault <sir@cmpwn.com>
Date:   Tue, 20 Apr 2021 12:33:37 -0400

fmt: fix example string

Diffstat:
Mfmt/README | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fmt/README b/fmt/README @@ -36,7 +36,7 @@ Some examples: fmt::printf("hello {}", "world"); // "hello world" fmt::printf("{1} {0}", "hello", "world"); // "world hello" - fmt::printf("{:x} {:X}", 51966, 61453); // "CAFE F00D" + fmt::printf("{:x} {:X}", 51966, 61453); // "cafe F00D" fmt::printf("{:-5}", 42); // "42 " fmt::printf("{:5}", 42); // " 42" fmt::printf("{:05}", 42); // "00042"