I have a field where users can input their names. I want to create a new file with their name in it, then write to this file (put their scores into it).
I'm following BYU's "Working with External Files" tutorial and it's getting me most of the way there but only for files that are already named or do not use user input to name the file itself. I know from prior experience if I try to assign their input into a variable, then name a file after that variable, it won't work. For example:
Code: Select all
global gname
put name into gname
open file "gname.txt" for append