This website requires JavaScript.
Explore
Help
Sign In
github
/
purescript-typeable
Watch
1
Star
0
Fork
1
You've already forked purescript-typeable
mirror of
https://github.com/yaitskov/purescript-typeable.git
synced
2024-11-09 23:53:05 +00:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
07657e21de
purescript-typeable
/
test
/
Main.js
6 lines
75 B
JavaScript
Raw
Normal View
History
Unescape
Escape
Get code compiling again Changes due to PureScript 0.15 1. Remove constraints from foreign imports. 2. Remove support for records due to the new apartness check. 3. Convert CommonJS to ESmodules Others: Format all files. TODO: Records are currently not supported because of the new apartness check in PureScript 0.15. The instance (Typeable (f a)) then partially overlaps with (Typeable (Record r)). Even though (a::Type) and (r::Row Type), that still isn't enough for the compiler to disambiguate. There is no way that I can see to specify an instance for all (f a) where f is NOT Record.
2023-07-04 12:47:36 +00:00
export
function
clog
(
x
)
{
return
function
(
)
{
console
.
log
(
x
)
;
}
;
}
Reference in New Issue
Copy Permalink