```package com.jongla.soundmash.testhack import o...
# announcements
m
Copy code
package com.jongla.soundmash.testhack

import org.junit.Test
import kotlin.test.assertTrue

val Prose.kotlin: Prose
    get() = Prose()
infix fun Prose.allows(v: Prose) = v
val Prose.you: Prose
    get() = Prose()
infix fun <http://Prose.to|Prose.to>(v: Prose) = v
val Prose.write: Prose
    get() = Prose()
infix fun Prose.crazy(v: Prose) = v
val Prose.hacks: Prose
    get() = Prose()
val Prose.take: Prose
    get() = Prose()
val Prose.the: Prose
    get() = Prose()
infix fun Prose.code(v: Prose) = v
val Prose.here: Prose
    get() = Prose()
infix fun Prose.shows(v: Prose) = v
val Prose.a: Prose
    get() = Prose()
infix fun Prose.perfect(v: Prose) = v
val Prose.example: Prose
    get() = Prose()

class Prose {

    @Test
    fun test() {
        assertTrue {
            kotlin allows you to write crazy hacks.
                    the code here shows a perfect example.
                    kotlin allows you to write crazy hacks.
                    the code here shows a perfect example
            kotlin allows you to write crazy hacks.
                    the code here shows a perfect example
            kotlin allows you to write crazy hacks.
                    the code here shows a perfect example
            kotlin allows you to write crazy hacks.
                    the code here shows a perfect example is Prose
        }
    }
}