I am trying to save data to a file:
a: 0
b: 10
c: 20
d: 30
save %redout.txt [a b c d]
I expected the file to contain the values. However, The file contains:
a b c d
How can I save variable values rather than variable names to the file?
I am trying to save data to a file:
a: 0
b: 10
c: 20
d: 30
save %redout.txt [a b c d]
I expected the file to contain the values. However, The file contains:
a b c d
How can I save variable values rather than variable names to the file?
Copyright © 2021 Jogjafile Inc.
You're saving a block which hasn't been evaluated. Normally you would reduce the block first to get the values before saving them.
So,
And if you want a loadable file with variables, use
save/all