On Unix, environment variables are referenced via the $ character. On windows, its %. Which means we can't make use of either one in a cross-platform compatible library.
# Posix
$ echo $ROOTDIR
'/studio'
# Windows
$ echo %ROOTDIR%
'c:\studio'
How about @?
$ dash @ROOTDIR
'c:\studio'