From 1a18cdbf5275ce87e8182debccd930ad9f6efcd8 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann <m@nuth.ch> Date: Thu, 20 Mar 2025 07:48:16 +0100 Subject: [PATCH] Add a workspace for the exercises --- rust-exercises.code-workspace | 59 +++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 rust-exercises.code-workspace diff --git a/rust-exercises.code-workspace b/rust-exercises.code-workspace new file mode 100644 index 0000000..ecf768f --- /dev/null +++ b/rust-exercises.code-workspace @@ -0,0 +1,59 @@ +{ + "folders": [ + { + "path": "./minigrep" + }, + { + "path": "./guessing_game" + }, + { + "path": "./hottie" + }, + { + "path": "./fibonacci" + }, + { + "path": "./collections" + }, + { + "path": "./restaurant" + }, + { + "path": "./backyard" + }, + { + "path": "./rectangles" + }, + { + "path": "./subtractor" + }, + { + "path": "./adder" + }, + { + "path": "./functions" + }, + { + "path": "./loops" + }, + { + "path": "./panic" + }, + { + "path": "./branches" + }, + { + "path": "./variables" + }, + { + "path": "./hello_cargo" + }, + { + "path": "./hello_world" + }, + { + "path": ".", + "name": "Solution Items" + } + ] +}