Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
void foo()
{
#include "foobody.txt"
}
(def foo (load-file "foobody.txt"))
void _foo() {
#include "foobody.txt"
}
void foo()
{
mixin(import("foobody.txt"));
}
function foo()
include "foobody.txt"
end function foo
function foo(): void
{
include 'foobody.txt';
}
procedure foo;
begin
{$I foobody.txt}
end;
sub foo {
do './foobody.txt';
}
def foo
eval File.read "foobody.txt"
end
fn main() {
include!("foobody.txt");
}