mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-23 06:03:07 +03:00
PureScript no longer emits the "Prim." prefix
This commit is contained in:
parent
c33652a41d
commit
4a5efbf231
@ -40,7 +40,7 @@ import Prelude
|
||||
3.0 % 2.0 -- 1.0
|
||||
4.0 % 2.0 -- 0.0
|
||||
-- Inspect the type of an expression in psci
|
||||
:t 9.5/2.5 + 4.4 -- Prim.Number
|
||||
:t 9.5/2.5 + 4.4 -- Number
|
||||
|
||||
-- Booleans
|
||||
true :: Boolean -- true
|
||||
@ -76,7 +76,7 @@ world""" -- "Hello\nworld"
|
||||
[1.2,2.0,3.14] :: Array Number -- [1.2,2.0,3.14]
|
||||
[true, true, false] :: Array Boolean -- [true,true,false]
|
||||
-- [1,2, true, "false"] won't work
|
||||
-- `Cannot unify Prim.Int with Prim.Boolean`
|
||||
-- `Cannot unify Int with Boolean`
|
||||
-- Cons (prepend)
|
||||
1 : [2,4,3] -- [1,2,4,3]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user