-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.ah
More file actions
32 lines (25 loc) · 775 Bytes
/
test.ah
File metadata and controls
32 lines (25 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from scriptax import myfolder.mine;
from scriptax import myfolder.quin as Quinn;
from scriptaxstd import test;
extend mine with Quinn;
script does_all_the_things()
{
a_variable = script name_generator(joe) {
return "bob " + joe;
};
and_the_other_guys = [];
and_the_other_guys[] = "Ringo Star";
and_the_other_guys[] = "George Harrison";
and_the_other_guys[] = "John Lennon";
and_the_other_guys[] = "Paul Mccartney";
something = {
"cool": {
'shirt': {
"status": "thanks"
}
}
};
return day() + " " + a_variable(joe="dylan") + " " + str(and_the_other_guys) + " " + str(something.cool.shirt) + " " + does_something_important();
}
my_instance = new test();
return my_instance.std_test();