Skip to content

Commit

Permalink
Rename vec-macro concept exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
cwhakes committed Apr 20, 2021
1 parent d2b129e commit 6d79447
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@
"status": "wip"
},
{
"slug": "vec-macro",
"name": "The Vec Macro",
"slug": "short-fibonacci",
"name": "A Short Fibonacci Sequence",
"difficulty": 1,
"uuid": "c481e318-ddd7-4f8a-91eb-dadb7315e304",
"concepts": [
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"blurb": "TODO: add blurb for vec-macro exercise",
"blurb": "Learn the `vec!` macro to build a short Fibonacci Sequence.",
"authors": [
"efx",
"coriolinus"
Expand All @@ -9,7 +9,7 @@
"src/lib.rs"
],
"test": [
"tests/vec_macro.rs"
"tests/short-fibonacci.rs"
],
"exemplar": [
".meta/exemplar.rs"
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "vec-macro"
name = "short_fibonacci"
version = "0.1.0"
edition = "2018"

File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use vec_macro::*;
use short_fibonacci::*;

#[test]
fn test_empty() {
Expand Down

0 comments on commit 6d79447

Please sign in to comment.