-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtests.lua
More file actions
32 lines (20 loc) · 787 Bytes
/
Copy pathtests.lua
File metadata and controls
32 lines (20 loc) · 787 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
print()
lam = require('lam')
t = lam.new("range", -3,1,0.5)
-- print("values in t:",table.unpack(t.table))
-- print()
-- print("printing locations:")
-- print("~~~ lam ",tostring(lam))
-- print(" ~ lam.object_methods ",tostring(lam.object_methods))
-- print(" ~ lam.object_methods.add ",tostring(lam.object_methods.add))
-- print(" ~ lam.object_methods.add_ ",tostring(lam.object_methods.add_))
-- print()
-- print("~~~ t", tostring(t))
-- print(" ~ t.add ", tostring(t.add))
-- print(" ~ t.add_ ", tostring(t.add_))
-- print("===================================================")
u = lam.make.range(5)
u = lam.basic.mult(u, 0.4)
v = lam.make.range(5)
v = lam.basic.mult(v, 5)
notes = {'e','d','c','d','e','e','e'}