Explore >> Select a destination


You are here

theburningmonk.com
| | blog.lohr.dev
2.5 parsecs away

Travel
| | A review by a Rust enthusiast
| | andreabergia.com
3.6 parsecs away

Travel
| | This post is part of the Languages Opinion series. Languages opinion - part one - JVM Languages opinion - part two - Rust ??thispost Languages opinion - part three - Javascript and Typescript Welcome back to my mini-series about programming languages. In this post, we will talk about one of the most interesting programming languages that I have seen in a long while: Rust.
| | coredumped.dev
3.9 parsecs away

Travel
| | Updated: 2023-01-06 About a year ago I was bitten by the PL bug. It started with reading Crafting Interpreters and discovering the wonders hidden under the hood of a compiler. I am also been a big fan of Emacs, and this started to get me interested in how its interpreter works. At the same time, I was reading the Rust book and trying to understand the concepts there. This all came to a head, and I decided to write an Emacs Lisp interpreter called rune in Rust.
| | deniskyashif.com
50.5 parsecs away

Travel
| In this article, we'll define a basic regular expression language using a context-free grammar and learn how to parse its strings in linear time using the recursive descent method.