Logo

Programming-Idioms

  • Rust
  • Go

Idiom #127 Source code inclusion

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

import _  "embed"
//go:embed foobody.txt
var s string

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