Skip to content

Commit

Permalink
Add missing instruction to move to the next exercise (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
eloots committed Sep 7, 2023
1 parent 743329b commit 0a58fae
Show file tree
Hide file tree
Showing 14 changed files with 77 additions and 3 deletions.
Expand Up @@ -155,7 +155,10 @@ wildcard import syntax from using an asterix (`*`) instead of an underscore (`_`
$ git commit -a -m "Snapshot after Scala 3 compiler syntax rewrites"
```

- Move to the next exercise by running the `cmtc next-exercise` command from the command line.
### Next steps

After successfully completing the tasks in this exercise, move to the next one by
running the `cmtc next-exercise` from the command line.

> NOTE: The extra bit of code that was added via `cmtc pull-template ...` can either be left as-is
> or be removed. Your choice.
Expand Down
Expand Up @@ -72,8 +72,10 @@ documentation.
$ git commit -a -m "Snapshot after Scala 3 compiler syntax rewrites"
```

- You've just completed this exercise. Let's move on to the next exercise by
executing the `cmtc next-exercise` command.
### Next steps

After successfully completing the tasks in this exercise, move to the next one by
running the `cmtc next-exercise` from the command line.

## Source code formatting & Markdown viewer in IntelliJ

Expand Down
5 changes: 5 additions & 0 deletions exercises/exercise_003_top_level_definitions/README.md
Expand Up @@ -55,6 +55,11 @@ Let's continue with the core topic of this exercise:

- Verify that the application runs correctly

### Next steps

After successfully completing the tasks in this exercise, move to the next one by
running the `cmtc next-exercise` from the command line.

## Source code formatting & Markdown viewer in IntelliJ

### Source code formatting
Expand Down
5 changes: 5 additions & 0 deletions exercises/exercise_004_parameter_untupling/README.md
Expand Up @@ -57,6 +57,11 @@ pairs.map(_ + _)

- Verify that the application runs correctly

### Next steps

After successfully completing the tasks in this exercise, move to the next one by
running the `cmtc next-exercise` from the command line.

## Source code formatting & Markdown viewer in IntelliJ

### Source code formatting
Expand Down
5 changes: 5 additions & 0 deletions exercises/exercise_005_extension_methods/README.md
Expand Up @@ -75,6 +75,11 @@ part of this exercise (adding the new extension methods).

- Verify that the application runs correctly.

### Next steps

After successfully completing the tasks in this exercise, move to the next one by
running the `cmtc next-exercise` from the command line.

## Source code formatting & Markdown viewer in IntelliJ

### Source code formatting
Expand Down
5 changes: 5 additions & 0 deletions exercises/exercise_006_using_and_summon/README.md
Expand Up @@ -29,6 +29,11 @@ use of _scala 2_'s `implicit`s and `implicitly`.

- Verify that the application runs correctly

### Next steps

After successfully completing the tasks in this exercise, move to the next one by
running the `cmtc next-exercise` from the command line.

## Source code formatting & Markdown viewer in IntelliJ

### Source code formatting
Expand Down
5 changes: 5 additions & 0 deletions exercises/exercise_007_givens/README.md
Expand Up @@ -33,6 +33,11 @@ secondly because these names don't really have a useful application in most case

- Verify that the application runs correctly.

### Next steps

After successfully completing the tasks in this exercise, move to the next one by
running the `cmtc next-exercise` from the command line.

## Source code formatting & Markdown viewer in IntelliJ

### Source code formatting
Expand Down
5 changes: 5 additions & 0 deletions exercises/exercise_008_enum_and_export/README.md
Expand Up @@ -77,6 +77,11 @@ in this exercise.

- Verify that the application runs correctly.

### Next steps

After successfully completing the tasks in this exercise, move to the next one by
running the `cmtc next-exercise` from the command line.

## Source code formatting & Markdown viewer in IntelliJ

### Source code formatting
Expand Down
5 changes: 5 additions & 0 deletions exercises/exercise_009_union_types/README.md
Expand Up @@ -69,6 +69,11 @@ Which of these actors receive messages that are responses from other actors?

- Verify that the application runs correctly

### Next steps

After successfully completing the tasks in this exercise, move to the next one by
running the `cmtc next-exercise` from the command line.

## Source code formatting & Markdown viewer in IntelliJ

### Source code formatting
Expand Down
Expand Up @@ -43,3 +43,9 @@ We will now walk through the different features
### Opaque type aliases

- Repeat the same steps for file `UsingTheAliases.scala` in the `opaquetypelaliases.opaquetypealias`

### Next steps

After successfully completing the tasks in this exercise, move to the next one by
running the `cmtc next-exercise` from the command line.

9 changes: 9 additions & 0 deletions exercises/exercise_011_optional_opaque_type_aliases/README.md
@@ -1,5 +1,9 @@
# Opaque Type Aliases

> NOTE: this exercise is optional. It's purpose is to show that certain use
> cases of opaque type aliases sound great at first, but turn out
> to be very difficult to implement
## Background

An Opaque Type Alias can be used to provide the functionality of a "wrapper
Expand Down Expand Up @@ -105,6 +109,11 @@ There are more type aliases in the source code that potentially could be convert
opaque versions. One that sticks out is the `Sudoku` type alias
(`type Sudoku = Vector[ReductionSet`). You may want to take a stab at converting it...

### Next steps

After successfully completing the tasks in this exercise, move to the next one by
running the `cmtc next-exercise` from the command line.

## Source code formatting & Markdown viewer in IntelliJ

### Source code formatting
Expand Down
5 changes: 5 additions & 0 deletions exercises/exercise_012_multiversal_equality/README.md
Expand Up @@ -38,6 +38,11 @@ error.
- Run the provided tests by executing the `test` command from the `sbt` prompt
and verify that all tests pass

### Next steps

After successfully completing the tasks in this exercise, move to the next one by
running the `cmtc next-exercise` from the command line.

## Source code formatting & Markdown viewer in IntelliJ

### Source code formatting
Expand Down
9 changes: 9 additions & 0 deletions exercises/exercise_020_opaque_type_aliases_alt/README.md
@@ -1,5 +1,9 @@
# Opaque Type Aliases

> NOTE: this exercise is optional. It's purpose is to show that certain use
> cases of opaque type aliases sound great at first, but turn out
> to be very difficult to implement
## Background

An Opaque Type Alias can be used to provide the functionality of a "wrapper
Expand Down Expand Up @@ -68,6 +72,11 @@ this exercise. Specifically we will convert the last of these type aliases,

- Verify that the application runs correctly

### Next steps

After successfully completing the tasks in this exercise, move to the next one by
running the `cmtc next-exercise` from the command line.

## Source code formatting & Markdown viewer in IntelliJ

### Source code formatting
Expand Down
5 changes: 5 additions & 0 deletions exercises/exercise_021_multiversal_equality/README.md
Expand Up @@ -38,6 +38,11 @@ error.
- Run the provided tests by executing the `test` command from the `sbt` prompt
and verify that all tests pass

### Next steps

After successfully completing the tasks in this exercise, move to the next one by
running the `cmtc next-exercise` from the command line.

## Source code formatting & Markdown viewer in IntelliJ

### Source code formatting
Expand Down

0 comments on commit 0a58fae

Please sign in to comment.