This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import enum | |
from dataclasses import dataclass, asdict, field | |
from abc import ABCMeta, abstractmethod | |
from typing import Tuple | |
import jinja2 | |
from pprint import pprint |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
# C++ RAII example | |
Compile with: | |
```sh | |
$ g++ -Wall -O3 -g -o raii raii.cpp | |
``` |