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

Programming

13226 readers
12 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
[–] Yoru_Sulfur@lemmy.davidbuckley.ca 4 points 1 year ago (2 children)

I like to start out any new language with an implementation of Conway's Game of Life. It's relatively simple, but tends to exercise a decent bit of the language.

[–] BinaryEnthusiast@beehaw.org 3 points 1 year ago (1 children)

You know, I’ve never implemented Conway’s game of life, and that sounds like an excellent way to work on a new language

[–] sotolf@beehaw.org 1 points 1 year ago

It's a fun little project to do :)

[–] Bardak@lemmy.ca 1 points 1 year ago

Seems like a good way to play around with multithreading, SIMD and even shaders if you wanted to.