Jonathan Paul Lukens
Jonathan Paul Lukens
This is very low priority since I have never actually seen a literal of either in production code, but the literals are a part of the grammar. Both literals and...
Because inheritance currently references the same method definition in memory, if an inherited method calls a method that is overridden on a child class, any changes to that method (signature,...
Ruby that assigns to a variable named `range` will fail to compile. These variable names should get automatically renamed.
Currently `has_key?` gets treated like any other method, which means that this Ruby: ```ruby if h.has_key?(:foo) puts "has key foo" end ``` gets compiled to this Go: ```go var hasKey...
Only fuzzy ideas for how so far.
The Ruby parse tree stores all comments by line number, and every node is annotated with the source line number, but the Go stdlib's AST package makes it exceedingly difficult...
Running the `markdown` command against a file containing the sample footnotes markdown from the Pandoc documentation that looks like this: ``` Here is a footnote reference,[^1] and another.[^longnote] [^1]: Here...
Greetings, New to Rust, so please forgive me if there's something obvious I'm missing. From the JSON API spec: > The id member is not required when the resource object...