Onscreen IDE & dynamic instant update [_v0.5.4_]

actually APP_files=sys.argv[1].strip(’"’).split(’::::’) would make sense, if it’s only 1 file (where the split would not be used)

but APP_files=sys.argv[1].split(’::::’).strip(’"’) does not work, because a list cant be stripped.

maybe some re is what we need?
or:

APP_files=sys.argv[1].strip('"').split('"::::"')

but this needs to be checked for platform type (as it seems to differ for osx & windows and maybe linux).