Hi! is there a way to retrieve the user home directory?
i've tried something like this:
[pascal]
assign(f, '%USERPROFILE%\test.txt');
rewrite(f);
write(f, 'ciao');
closefile(f);
[/pascal]

but it doesn't work..
I'd like something that work for linux too.

Bye!