1-- Copyright (c) 2019 The DAML Authors. All rights reserved.
2-- SPDX-License-Identifier: Apache-2.0
3
4
5\subsection{Bird-style LHS}
6
7> module Bird
8>     (
9>       fly
10>     ) where
11
12
13
14what birds are able to do:
15
16> fly :: IO ()
17> fly = putStrLn "birds fly."
18
19
20