Skip to content

Commit a5eaacb

Browse files
currency-conversion
1 parent 62e503d commit a5eaacb

12 files changed

Lines changed: 11 additions & 11 deletions

File tree

config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
"status": "wip"
5555
},
5656
{
57-
"slug": "currency-exchange",
58-
"name": "Currency Exchange",
57+
"slug": "currency-conversion",
58+
"name": "Currency Conversion",
5959
"uuid": "380a2d4f-ea48-47a1-94f1-fc8ec0561136",
6060
"concepts": [
6161
"numbers"

exercises/concept/cars-assemble/.docs/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This exercise introduces conditionals — choosing between two or more
44
courses of action based on a value. It builds on the booleans you met
55
in [Annalyn's Infiltration][annalyns] and the integer arithmetic from
6-
[Currency Exchange][currency-exchange].
6+
[Currency Conversion][currency-conversion].
77

88
## Comparison words
99

@@ -75,7 +75,7 @@ A few details worth noting:
7575
result.
7676

7777
[annalyns]: https://exercism.org/tracks/factor/exercises/annalyns-infiltration
78-
[currency-exchange]: https://exercism.org/tracks/factor/exercises/currency-exchange
78+
[currency-conversion]: https://exercism.org/tracks/factor/exercises/currency-conversion
7979
[math]: https://docs.factorcode.org/content/vocab-math.html
8080
[kernel]: https://docs.factorcode.org/content/vocab-kernel.html
8181
[combinators]: https://docs.factorcode.org/content/vocab-combinators.html

exercises/concept/cars-assemble/.meta/design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ Introduce Factor's conditional combinators by mapping a discrete input
2828
## Prerequisites
2929

3030
- `booleans` — taught in `annalyns-infiltration`.
31-
- `numbers` — taught in `currency-exchange`.
31+
- `numbers` — taught in `currency-conversion`.
File renamed without changes.

exercises/concept/currency-exchange/.docs/instructions.md renamed to exercises/concept/currency-conversion/.docs/instructions.md

File renamed without changes.

exercises/concept/currency-exchange/.docs/introduction.md renamed to exercises/concept/currency-conversion/.docs/introduction.md

File renamed without changes.
File renamed without changes.

exercises/concept/currency-exchange/.meta/config.json renamed to exercises/concept/currency-conversion/.meta/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
],
55
"files": {
66
"solution": [
7-
"currency-exchange/currency-exchange.factor"
7+
"currency-conversion/currency-conversion.factor"
88
],
99
"test": [
10-
"currency-exchange/currency-exchange-tests.factor"
10+
"currency-conversion/currency-conversion-tests.factor"
1111
],
1212
"exemplar": [
1313
".meta/exemplar.factor"
File renamed without changes.

exercises/concept/currency-exchange/.meta/exemplar.factor renamed to exercises/concept/currency-conversion/.meta/exemplar.factor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
USING: kernel locals math math.functions ;
2-
IN: currency-exchange
2+
IN: currency-conversion
33

44
: exchange-money ( budget exchange-rate -- exchanged )
55
/ ;

0 commit comments

Comments
 (0)