mirror of
https://github.com/helix-editor/helix
synced 2026-08-06 15:02:59 +02:00
12 lines
208 B
Elm
12 lines
208 B
Elm
type Color = Red | Blue
|
|
-- ^ @type
|
|
-- ^ @constructor
|
|
-- ^ @constructor
|
|
f x = case x of
|
|
Just y -> y
|
|
--^ @constructor
|
|
Nothing -> 0
|
|
--^ @constructor
|
|
a = Just 1
|
|
-- ^ @constructor
|