mirror of
https://github.com/haskell/ghcide.git
synced 2024-11-26 12:25:25 +03:00
67b4d40af4
Signed-off-by: Alexander Diemand <codieplusplus@apax.net>
20 lines
257 B
Plaintext
20 lines
257 B
Plaintext
-- Copyright (c) 2019 The DAML Authors. All rights reserved.
|
|
-- SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
\subsection{Bird-style LHS}
|
|
|
|
> module Bird
|
|
> (
|
|
> fly
|
|
> ) where
|
|
|
|
|
|
|
|
what birds are able to do:
|
|
|
|
> fly :: IO ()
|
|
> fly = putStrLn "birds fly."
|
|
|
|
|