From a339dfd549503c7d082b34ca739c605531bfd725 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 23 Oct 2023 21:02:45 -0500 Subject: [PATCH] =?UTF-8?q?dummy.cl:=20Use=20unicode=20escape=20?= =?UTF-8?q?=F0=9F=A6=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dummy.cl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dummy.cl b/dummy.cl index 963a333..5dc57ac 100644 --- a/dummy.cl +++ b/dummy.cl @@ -8,9 +8,9 @@ fn main() { // An if expression is like the ternary conditional operator in C let y = if x < 50 { - 0 + "\u{1f988}" } else { - x + "x" }; // A `while` expression is like the while-else construct in Python,