kohtaaminen : 3 All Good Things Come in Threes

Yes.

3.1 Structure

And of course lists:

  • wun

  • two

  • three

    • and

    • more

  • back again.

over.

3.2 Content

Numbers, numbers, numbers:

  1. wun

  2. two

  3. three

    1. and

    2. letters

      1. roman

      2. fakes

      3. really

      4. yes

        1. numbers again

        2. so what

      5. back

    3. more

  4. retracting

  5. leaving

gone.

3.2.1 Some Pictures

What a nice picture!

Some Code Blocks

#include <iostream>

int main(int argc, char** argv) {
  std::cout << argc << " arguments including the binary name.\n";
  return argc;
}

That was C++

Now for some Python:

import sys
from typing import List, Union


def main(args: Union(List[str], None)=None) -> int:
    """Are we serious?"""
    args = args if args else sys.argv[1:]
    if not args:
        print('we need arguments to discuss')
        return 2
    return 0


if __name__ == '__main__':
    sys.exit(main(sys.argv[1:]))

Thät’s all for now &rightarrow;

Le Fin