Logo

Programming-Idioms

  • JS
  • Fortran

Idiom #127 Source code inclusion

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

function foo()
include "foobody.txt"
end function foo
import { readFile } from 'fs/promises';
const foo = new Function(await readFile('foobody.txt'));
void foo()
{
#include "foobody.txt"
}

Same as C++

New implementation...
< >
MLKo