Just as a example:
Stats of a seed:
- Growth: 1
- Gain: 2
- Strength: 3
Program run in lua:
m = peripheral.wrap("back")
-- Running directly
m.getSpecimenStats()
1
2
3
-- Saving it as a variable
stats = m.getSpecimenStats()
stats -- Btw this comes out as a number variable
1
How can i save all variables when its, not really returning them in a array or dictionary, but just kinda printing 3 lines.











