this post was submitted on 11 Jun 2023
25 points (100.0% liked)

Programming

13215 readers
1 users here now

All things programming and coding related. Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 1 year ago
MODERATORS
 

I’m currently going through the process of teaching myself Rust as a fun summer project, especially since it’s different enough from the Java/Spring stack I use at work regularly. What are some interesting projects I can work on in Rust to get some familiarity with how the language works, and get an idea of some of the libraries I can use with it?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 4 points 1 year ago* (last edited 1 year ago) (1 children)

Rust really shines with parsers and generators. They are easy enough and fun to write. Maybe write a lisp with it? Or a prettifier for your favorite language...

If you go with a parser, this one is an interesting crate to start messing around with:

https://github.com/maciejhirsz/logos

[–] [email protected] 2 points 1 year ago

Huh interesting, Parsing is always a fun exercise for learning some language features. I may try that out then for a good starting project. Thanks!