Getting started with Rust with Visual Studio Code
Leave a reply
I started learning Rust, and I found Visual Studio Code an excellent IDE for experimenting with Rust (in the future, I’ll also evaluate my beloved Eclipse). I thought I’d share this experience. Assuming you have already installed Rust, let’s create a project
1 2 |
❯ cargo new hello Creating binary (application) `hello` package |
Open Visual Studio Code in the “hello” directory
1 2 |
cd hello code . |
We get syntax […]