(= f (table)) (= k 1) (= (f k) (+ k 1))
(def set-the-table (k) (= (tb k) (+ k 1))) (= tb (table))
file1.arc:
; throwaway file I'm playing around with ; define some temporary function (= (foo x) (+ x 1))
; throwaway file I'm playing around with (= foo (table)) (for i 0 3 (= (foo i) i))
(load "file2.arc") (load "file1.arc")