tomaskallup

Results 34 comments of tomaskallup

> re `to_string($$LINE)`, does `$stringify($$LINE)` work? Nope, that just prints `] $$LINE`

I agree with $echo, pretty clear where it comes from.

It would be nice to also include a section about working with `c-sources` in project. I was able to make a quick example, storing it here for reference. In project...

Another thing I ran into: ``` macro @escape_sequence(String seq) { return "\u001b" +++ seq; } const TEST = @escape_sequence("[H"); ``` Fails to compile and places the error at the `"\u001b"`...