wifinigel.MikrotikScripting/scripts/v6/ch6-08-local-vars.rsc

19 lines
388 B
Text
Raw Normal View History

2023-01-19 21:27:15 +00:00
# filename: ch6-08-local-vars.rsc
# Create a local variable
:local SmallNumber;
# Print its value
:put ("Variable contents: $SmallNumber");
# Assign some data to the variable
2023-02-19 13:53:15 +00:00
:set SmallNumber 2;
2023-01-19 21:27:15 +00:00
# Print its value again
:put ("Variable contents: $SmallNumber");
# Let's change the variable value
2023-02-19 13:53:15 +00:00
:set SmallNumber 3;
2023-01-19 21:27:15 +00:00
# Print its value again
:put ("Variable contents: $SmallNumber");