summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/action/runtime_quote_code.yql
blob: 5eaff286397e4c2bedd34c4294796592ac83108e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
select
    FormatCode(QuoteCode(AsAtom("foo"))),
    FormatCode(QuoteCode(AsTuple())),
    FormatCode(QuoteCode(AsTuple(AsAtom("foo"),AsAtom("bar")))),
    FormatCode(QuoteCode(1)),
    FormatCode(QuoteCode(($x,$y)->{ return $x+$y })),
    ListMap(ListFromRange(1,4), ($x)->{
        return FormatCode(QuoteCode(
            ($y)->{ return $x+$y }
        ))
    });