Logo

Programming-Idioms

  • Rust
  • Scala
  • Php

Idiom #127 Source code inclusion

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

function foo(): void
{
    include 'foobody.txt';
}
fn main() {
    include!("foobody.txt");
}

"foobody.txt" must contain a single Rust expression. If you need several, enclose them in braces.
void foo()
{
#include "foobody.txt"
}

Same as C++

New implementation...
< >
MLKo