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"
}
Same as C++
(def foo (load-file "foobody.txt"))
for this to work, foobody.txt should contain a lambda
void _foo() {
#include "foobody.txt"
}
void foo()
{
mixin(import("foobody.txt"));
}
importExpression creates a string from a file.
mixinExpression turns a string into source code.
mixinExpression turns a string into source code.
function foo()
include "foobody.txt"
end function foo
const foo = new Function(await readFile('foobody.txt'));
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
File foobody.txt will be read and evaluated at runtime.
Using eval will make the final value of foobody.txt available to be returned by foo.
Using load or require will not.
Using eval will make the final value of foobody.txt available to be returned by foo.
Using load or require will not.
fn main() {
include!("foobody.txt");
}
"foobody.txt" must contain a single Rust expression. If you need several, enclose them in braces.