blob: 3827b60842e0912fd72d42e80a3be604156c9a41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require "variables";
require "include";
# Invalid namespace
set "globl.var" "frop";
# Sub-namespace
set "global.env.0" "12";
# Invalid variable name
set "global.12" "porf";
|