I have a file like this (param.txt):
JSS 2
ADEV 1
VERS 770
JSD 1
And I want to put the data from this file into a struct with a variable in my workplace.
Let say I call it "P", then P is the struct of:
Field Value
_____ |_______
JSS |2
ADEV |1
VERS |770
JSD |1
Then:
>>> P.JSS
ans =
2
Is it possible?
Thanks!