[
    Puts(
        Chc(
            [
                Choice {
                    weight: None,
                    value: Cat(
                        [
                            Lit(
                                Str(
                                    "foo",
                                ),
                            ),
                        ],
                    ),
                },
            ],
        ),
    ),
    Puts(
        Chc(
            [
                Choice {
                    weight: None,
                    value: Cat(
                        [
                            Lit(
                                Str(
                                    "foo bar baz",
                                ),
                            ),
                        ],
                    ),
                },
            ],
        ),
    ),
    Puts(
        Chc(
            [
                Choice {
                    weight: None,
                    value: Cat(
                        [
                            Lit(
                                Str(
                                    "won't you",
                                ),
                            ),
                        ],
                    ),
                },
            ],
        ),
    ),
    Puts(
        Chc(
            [
                Choice {
                    weight: None,
                    value: Cat(
                        [
                            Lit(
                                Str(
                                    "this\nthat",
                                ),
                            ),
                        ],
                    ),
                },
            ],
        ),
    ),
]