[READ-ONLY] Mirror of https://github.com/probablykasper/cpc. Text calculator with support for units and conversion cpc.kasper.space
calculator cli conversion converter library math package units units-converter wasm website
0

Configure Feed

Select the types of activity you want to include in your feed.

Add currency symbols

Kasper (Jun 29, 2026, 12:56 PM +0200) bf6c146d daaa8e80

+5 -1
+3
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## Next 4 + - Add currency symbols 5 + 3 6 ## 4.1.0 - 2026 Jul 29 4 7 - Add currency units 5 8
+2 -1
src/lexer.rs
··· 19 19 | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z" => true, 20 20 "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" 21 21 | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" => true, 22 - "Ω" | "Ω" | "µ" | "μ" => true, 22 + "Ω" | "Ω" | "µ" | "μ" | "ł" | "$" | "€" | "£" | "₹" | "₪" | "¥" | "₩" | "₱" | "฿" | "₺" 23 + | "₴" | "₫" => true, 23 24 _ => false, 24 25 } 25 26 }