Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 225 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 225 Bytes

purescript-conditional

Provides a simple shorthand for conditional statements, analagous to predicate ? expr1 : expr2 in JS

Usage

import Conditional ((?))
(false || true) ? (3 + 5) $ (5 * 2)  -- 8