dummy.cl: Use unicode escape 🦈

This commit is contained in:
John 2023-10-23 21:02:45 -05:00
parent 0e917837c0
commit a339dfd549

View File

@ -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,