This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main where | |
import Prelude | |
import Control.Monad.Eff (Eff) | |
import Control.Monad.Eff.Console (logShow, CONSOLE) | |
import Data.Foldable (class Foldable, foldl, intercalate) | |
import Data.Maybe (Maybe(..), maybe) | |
import Data.Monoid (class Monoid, mempty) | |
import Data.StrMap (StrMap, lookup) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main where | |
import Prelude | |
import Control.Monad.Eff.Console (logShow) | |
import TryPureScript (render, withConsole) | |
import Control.Alternative (class Alternative) | |
import Control.Plus (class Plus) | |
import Control.Alt (class Alt) | |
import Data.Foldable (class Foldable, foldMap) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main where | |
import Type.Prelude | |
import Type.Row | |
import Type.Data.Boolean | |
import Type.Data.Symbol as Symbol | |
import Data.Newtype | |
data RProxy (r :: # Type) = RProxy | |
data RLProxy (rl :: RowList) = RLProxy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main where | |
import Prelude | |
import Type.Proxy (Proxy(..)) | |
import Data.Generic.Rep | |
foreign import kind List | |
foreign import data Cons :: Type -> List -> List | |
foreign import data Nil :: List |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main where | |
import Prelude | |
import Color (Color, white, rgba') | |
import Color.Scheme.MaterialDesign (blueGrey, grey, pink, red, purple) | |
import Control.Monad.Eff (Eff) | |
import Control.MonadZero (guard) | |
import Data.Newtype | |
import Data.Array (sortBy, (..), fromFoldable) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Test.RowListMaps where | |
import Control.Monad.Eff (Eff) | |
import Control.Monad.Eff.Console (CONSOLE, log) | |
import Data.Maybe (fromJust) | |
import Data.StrMap as SM | |
import Data.Tuple (Tuple(..)) | |
import Data.Variant (Variant, inj, SProxy(..)) | |
import Global.Unsafe (unsafeStringify) | |
import Partial.Unsafe (unsafePartial) |
NewerOlder