include_file [function]

include_file( string file[, bool override ] )

executes the file pointed to by file, returns success, as bool, emits a warning on failure

include_file( "something.sgs" ); // loads something
include_file( "something.sgs" ); // does not load it again
include_file( "something.sgs", true ); // loads it again