aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/unorderedLists.kt
blob: a594b89b67026f0145bdc5614cc57483c70c5ac5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
 * Usage summary:
 *
 * - Rinse
 * - Repeat
 *
 * Usage instructions:
 *
 * - [Bar.rinse] to rinse
 * - Alter any rinse options _(optional)_
 * - To repeat; [Bar.repeat]
 *      - Can reconfigure options:
 *          - Soap
 *          - Elbow Grease
 *          - Bleach
 *
 * Rinse options:
 *
 * - [Bar.useSoap]
 *      - _recommended_
 *
 * - [Bar.useElbowGrease]
 *      - _warning: requires effort_
 *
 * - [Bar.useBleach]
 *      - __use with caution__
 *
 */
class Bar {
    fun rinse() = Unit
    fun repeat() = Unit

    var useSoap = false
    var useElbowGrease = false
    var useBleach = false
}