Page 2#

Multi-page source#

We define some part of the code here:

int z = x + y;

Tangled result#

Including content from the next page.

Tangled block 'file: src/main2.cpp' [from here]

#include <iostream>
int main(int, char**) {
    int x = 10;
    int y = 32;
    int z = x + y;
    std::cout << "z = " << z << std::endl;
    return 0;
}