mirror of
https://github.com/wifinigel/MikrotikScripting.git
synced 2025-06-30 13:14:29 +02:00
initial commit
This commit is contained in:
commit
c782dde326
61 changed files with 1457 additions and 0 deletions
21
scripts/ch6-01-variable-value-test.rsc
Normal file
21
scripts/ch6-01-variable-value-test.rsc
Normal file
|
@ -0,0 +1,21 @@
|
|||
# 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");
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue