blob: 07ad87fd3820deb2dde0501436cf9ed5b0128297 (
plain)
1
2
3
4
5
6
7
8
9
|
-- @shouldWarnWith UnusedImport
module Main where
import Prelude (Unit, unit, pure)
import Effect (Effect)
import Type.RowList (kind RowList)
main :: Effect Unit
main = pure unit
|