Skip to content

Instantly share code, notes, and snippets.

@purefunctor
Created August 15, 2021 19:54
Show Gist options
  • Save purefunctor/7a32a7908e36f832d9737d13b82668cb to your computer and use it in GitHub Desktop.
Save purefunctor/7a32a7908e36f832d9737d13b82668cb to your computer and use it in GitHub Desktop.
PureScript Module Shadowing
module Main where
import Prelude
import Effect (Effect)
import Effect.Console (log)
data Effect_Console = Effect_Console
main :: Effect Unit
main = log "module gets shadowed"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment