Ary Borenszweig

Results 414 comments of Ary Borenszweig

I just tried it and if we replace `\{{@type}}` with `self`, all YAML specs pass. Maybe that's the solution? 🤔

Thank you! I would suggest adding some context, links or explanations to avoid everyone having to search what this means.

I actually think it's not something bad to have. Maybe if the code is simple you can do: ```crystal require "ecr" class Greeter def initialize(@names : Array(String)) end ECR.def_to_s_string

@Blacksmoke16 That can't work, the string must be known at compile-time. It seems you are changing the string at runtime.

I didn't read the entire conversation, but in my opinion signals in Crystal should be done like in Go: only `SIGKILL` is supported in Windows, trying to use `SIGINT` gives...

Strange! I remember catching bugs thanks to at least one of those restrictions.

Was there a discussion around this, or a reason to add it?

I see, that makes sense! I would then add all of that description to the documentation of this new property. Explaining a concrete example behind this property will help users...

We can always improve #8336 or do something similar that checks whether a function is define. This can be done by creating a small C program and check if it...

I think this is because the lexer sees `t` and thinks "Hey, it's a 't'! The only thing that can be is the token `true`". Then it finds the "e"...