10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
BASENAME()
The base name, which is a copy of the first command-line argument (not
counting the switches or the program name).
BCAT(...)
Concatenate several blobs. Nulls are skipped, if any.
BYTE(...)
Make a blob; each argument is a number, of which the low 8-bits are used
to make the value of one byte in the blob, so the size of the blob will
then be the same as the number of arguments.
CL(text)
Returns the class number, given the class name. If there is no such
|
>
>
>
>
>
>
>
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
BASENAME()
The base name, which is a copy of the first command-line argument (not
counting the switches or the program name).
BCAT(...)
Concatenate several blobs. Nulls are skipped, if any.
BEST_MOVE_LIST()
Returns the best personal move list in the user cache file (only valid if
.saveSolution.private is true), as a blob. If there isn't any saved, then
this is null.
BEST_SCORE()
Returns the best score from the best move list (if it has been saved).
If no score has been explicitly specified, then this is equal to the
number of moves. If no score has been stored, then it is null.
BYTE(...)
Make a blob; each argument is a number, of which the low 8-bits are used
to make the value of one byte in the blob, so the size of the blob will
then be the same as the number of arguments.
CL(text)
Returns the class number, given the class name. If there is no such
|