blob: 2fe8e243ff67d99e1b42640ce9146d257a926f28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# file : tests/function/name/testscript
# license : MIT; see accompanying LICENSE file
.include ../../common.testscript
: size
:
{
$* <'print $size(a b c@./)' >'3' : basics
$* <'print $type($size(a))' >'uint64' : type
}
: sort
:
{
$* <'print $sort( d/t{a} t{c b} d/t{a})' >'t{b} t{c} d/t{a} d/t{a}' : basics
$* <'print $sort( d/t{a} t{c b} d/t{a}, dedup)' >'t{b} t{c} d/t{a}' : dedup
}
|