use staticsort;
const X: = ;
const Y: = ;
// The macro takes the following parameters in the order they're
// listed: type to sort, index to start at, index to end at, and
// either the name of an existing const array variable or just
// a directly-passed "anonymous" array.
// Sort all of X:
static XX: = staticsort!;
// Just sort half of Y:
static YY: = staticsort!;
// Sort all of an array that's the same as X, but passed
// directly as a parameter:
static ZZ: = staticsort!;