You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
491 B
Plaintext
25 lines
491 B
Plaintext
require ["variables"];
|
|
set "honorific" "Mr";
|
|
set "vacation" text:
|
|
Dear ${HONORIFIC} ${last_name},
|
|
I am out, please leave a message after the meep.
|
|
.
|
|
;
|
|
set :length "b" "${a}";
|
|
set :lower "b" "${a}";
|
|
set :upperfirst "b" "${a}";
|
|
set :upperfirst :lower "b" "${a}";
|
|
set :quotewildcard "b" "Rock*";
|
|
if string :matches " ${state} " "* pending *"
|
|
{
|
|
set "test1" "*";
|
|
}
|
|
if string ["aaa","bbb"] ["aaa","bbb"]
|
|
{
|
|
set "test2" "*";
|
|
}
|
|
if string :is :comparator "i;octet" "bbb" "bbb"
|
|
{
|
|
set "test3" "*";
|
|
}
|