update for v6/v7 support

This commit is contained in:
Wifinigel 2023-01-24 20:28:40 +00:00
parent 4871e9432b
commit b10b99bd87
120 changed files with 1479 additions and 22 deletions

View file

@ -1,21 +0,0 @@
# ch6-01-variable-value-test.rsc
# Declare a variable with no value
:local BridgeName;
# Test if the variable has a value
:if ([:typeof $BridgeName] = "nothing") do={
:put "Test 1: this variable has no value!";
} else= {
:put ("Test 1: the variable value is: $BridgeName");
}
# Set a value for the variable
:set BridgeName "Bridge1";
# Test if the variable has a value
:if ([:typeof $BridgeName] = "nothing") do={
:put "Test 2: this variable has no value!";
} else= {
:put ("Test 2: the variable value is: $BridgeName");
}