Yes.
3.1 Structure
And of course lists:
wun
two
three
and
more
back again.
over.
3.2 Content
Numbers, numbers, numbers:
wun
two
three
and
letters
roman
fakes
really
yes
numbers again
so what
back
more
retracting
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 →
Le Fin