mirror of
https://github.com/wifinigel/MikrotikScripting.git
synced 2025-07-22 11:54:40 +02:00
initial commit
This commit is contained in:
commit
c782dde326
61 changed files with 1457 additions and 0 deletions
14
scripts/ch6-02-undeclared-variable.rsc
Normal file
14
scripts/ch6-02-undeclared-variable.rsc
Normal file
|
@ -0,0 +1,14 @@
|
|||
# ch6-02-undeclared-variable.rsc
|
||||
|
||||
# Declare a variable but assign no value
|
||||
:local RouteDistance;
|
||||
|
||||
# Let's test the data type of the variable
|
||||
:if ([:typeof $RouteDistance] = "nothing") do={
|
||||
:put "Test 1: this variable has no value!";
|
||||
}
|
||||
|
||||
# Let's test the data type of a non-existent variable
|
||||
:if ([:typeof $RouteDist] = "nothing") do={
|
||||
:put "Test 2: this variable has no value!";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue