load vs. do
load
This function reads the script and translates the script into values, words, and blocks, but does not evaluate the script.
load "print now"
;== [print now]
load %script.r
do
Evaluates the script, returning the last evaluation result.
do "print now"
; 11-Jul-2018/16:38:13+07:00
do [print now]
; 11-Jul-2018/16:41:52+07:00
do %script.r