Skip to content

Commit

Permalink
fix: Add missing negate function from the prelude
Browse files Browse the repository at this point in the history
  • Loading branch information
Marwes committed Apr 21, 2019
1 parent bf98112 commit 0091f47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ pub const PRELUDE: &'static str = r#"
let __implicit_prelude = import! std.prelude
let { IO, Num, Eq, Ord, Show, Functor, Applicative, Monad, Option, Bool, ? } = __implicit_prelude
let { (+), (-), (*), (/), (==), (/=), (<), (<=), (>=), (>), (++), show, not, flat_map } = __implicit_prelude
let { (+), (-), (*), (/), negate, (==), (/=), (<), (<=), (>=), (>), (++), show, not, flat_map } = __implicit_prelude
let __implicit_bool @ { ? } = import! std.bool
Expand Down

0 comments on commit 0091f47

Please sign in to comment.