A quirky monospaced font in which
<3 doesn't look like the heart emoji
Perfect (ಠ_ಠ)
- Type
- Vector Font
- Glyphs
- Basic Latin
- Weight
- Regular
- Italics
- No
- Ligatures
- Hell No
data Exp = Number Int
| Add Exp Exp
| Subtract Exp Exp
| Multiply Exp Exp
| Divide Exp Exp
deriving (Show)
instance Num Exp where
x + y = Add x y
x - y = Subtract x y
x * y = Multiply x y
fromInteger x = Number . fromIntegral $ x
main = do
print (4 + 4 * 10 - 8 :: Exp)
Inspired by Artwiz Edges and Geo. Designed for programmers and terminal dwellers.