mirror of
https://github.com/haskell/ghcide.git
synced 2024-12-13 09:34:31 +03:00
67b4d40af4
Signed-off-by: Alexander Diemand <codieplusplus@apax.net>
37 lines
457 B
Plaintext
37 lines
457 B
Plaintext
-- Copyright (c) 2019 The DAML Authors. All rights reserved.
|
|
-- SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
\subsection{Testing LHS}
|
|
|
|
\begin{code}
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
module Test
|
|
(
|
|
main
|
|
) where
|
|
|
|
|
|
import Bird
|
|
|
|
\end{code}
|
|
|
|
for this file, \emph{hlint} should be turned off.
|
|
\begin{code}
|
|
{-# ANN module ("HLint: ignore" :: String) #-}
|
|
\end{code}
|
|
|
|
our main procedure
|
|
|
|
\begin{code}
|
|
|
|
main :: IO ()
|
|
main = do
|
|
putStrLn "hello world."
|
|
fly
|
|
|
|
\end{code}
|
|
|
|
|