Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Clojure

Idiom #127 Source code inclusion

Import the source code for the function foo body from a file "foobody.txt".

(def foo (load-file "foobody.txt"))

for this to work, foobody.txt should contain a lambda
void foo()
{
#include "foobody.txt"
}

Same as C++

New implementation...
< >
MLKo