aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/nestedLists.kt
blob: 83217f8a59a141cc6f570f20f8065fb2b66b57de (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
/**
 * Usage instructions:
 *
 * - __Rinse__
 *      1. Alter any rinse options _(optional)_
 *          - Recommended to [Bar.useSoap]
 *          - Optionally apply [Bar.elbowGrease] for best results
 *      2. [Bar.rinse] to begin rinse
 *          1. Thus you should call [Bar.rinse]
 *          2. *Then* call [Bar.repeat]
 *              - Don't forget to use:
 *                  - Soap
 *                  - Elbow Grease
 *          3. Finally, adjust soap usage [Bar.useSoap] as needed
 *      3. Repeat with [Bar.repeat]
 *
 * - __Repeat__
 *      - Will use previously used rinse options
 *      - [Bar.rinse] must have been called once before
 *      - Can be repeated any number of times
 *      - Options include:
 *          - [Bar.useSoap]
 *          - [Bar.useElbowGrease]
 */
class Bar {
    fun rinse() = Unit
    fun repeat() = Unit

    var useSoap = false
    var useElbowGrease = false
}