mirror of
https://github.com/catppuccin/catppuccin
synced 2024-11-10 06:04:21 +00:00
b9bbd77c7f
* docs: restructure & improve contrib docs * chore: rework samples code * docs: fix capitalization & brand names * docs: PR comments & try to standardise palette vs flavor * docs: add sample-programs * docs: update submission guidelines (refs: #1821) * refactor: tidy up docs Co-authored-by: winston <hey@winston.sh>
16 lines
No EOL
283 B
Haskell
16 lines
No EOL
283 B
Haskell
{-# LANGUAGE CPP #-}
|
|
module ModuleName
|
|
import qualified ImportModuleName
|
|
"string literal"
|
|
'c'
|
|
intPair :: (Int, Int)
|
|
intPair = (456,434)
|
|
-- line comment
|
|
{- nested
|
|
comment -}
|
|
data Bool = True | False
|
|
let l1 = [1, 2]
|
|
let l2 = 1 : []
|
|
let two = 1 + 1
|
|
let f = \_ + 1
|
|
[t|select * from foo|] |