ilovesoup | c9fef1d | 2012-07-08 19:30:42 +0000 | [diff] [blame] | 1 | drop dataverse test if exists; |
2 | create dataverse test; | ||||
3 | use dataverse test; | ||||
4 | |||||
5 | write output to nc1:"rttest/string_codepoint-to-string2.adm"; | ||||
6 | |||||
7 | let $x1 := [] | ||||
8 | let $c1 := codepoint-to-string($x1) | ||||
9 | |||||
10 | let $x2 := [97,98,99] | ||||
11 | let $c2 := codepoint-to-string($x2) | ||||
12 | return {"f1": $c1, "f2" : $c2} |