You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Edit: This seems to be the same issue as #11. Was that resolved?
Type annotation highlight color is different between these equivalent lines in foo and foo2:
(i ::ArrayInt) <- bar
i ::ArrayInt<- bar
Not a major issue, but I assume the types should be highlighted the same color if they have the same meaning.
Full example:
importData.Array ((..))
bar::Array (ArrayInt)
bar = do
i ::Int<-1 .. 5
pure [i]
foo::Array (ArrayInt)
foo = do
(i ::ArrayInt) <- bar
pure i
foo2::Array (ArrayInt)
foo2 = do
i ::ArrayInt<- bar
pure i