Toni Neubert
Toni Neubert
Running my code inside PyCharm 2016.1 (python 3.4, colorama 0.3.7, linux) I get this error for set_title: ````python Traceback (most recent call last): File ".../run.py", line 7, in print(ansi.set_title('My Title'))...
Hello, Running clang-tidy 14 on my available systems (ubuntu 22.02, Gentoo or arch linux) results in a segfault. clang-format 14 doesn't segfault, nor does clang-tidy 13, 12... Any idea? This...
Closes #11
See https://docs.python.org/3/library/functions.html#print
Request is out: https://github.com/compiler-explorer/compiler-explorer/issues/2392
```cpp constexpr auto test = ctp::printf( "┌{0:─^{2}}┐\n" "│{1: ^{2}}│\n" "└{0:─^{2}}┘\n", "", "Hello, world!", 20); ``` Should print: ``` ┌────────────────────┐ │ Hello, world! │ └────────────────────┘ ```
`ctp::print(ctp::file_descriptor("log.txt"), "Hello World", 42);`
See https://github.com/Viatorus/compile-time-printer/blob/d1dacb32942e4de6d6025e5b7cf7b665f9c584b5/tests/test_main.py#L137-L140
```cpp auto dur = ctp::bench(1 /* id */, []{ // code... }); ctp::print(dur); // 1s 12 ms ```