Logo

Programming-Idioms

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

Idiom #127 Source code inclusion

Import the source code for the function foo body from a file "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