Traditionally, files are loaded directly from the hard disk: (load "file.arc")
will search for the file in your local machine.The idea is to let load take an URI instead of a path, and making it loading the file in a trasparent manner, even if it is a remote file. For example (load "http://arclanguage.com/lib/myfile.arc")
would fetch the file from the web and then load it in the interpreter.What do you think about it? Could it be useful in your opinion? Do you think it would expose programs to security issues? |