-
-
Notifications
You must be signed in to change notification settings - Fork 379
Expand file tree
/
Copy pathexercise_readme.go.tmpl
More file actions
24 lines (18 loc) · 847 Bytes
/
exercise_readme.go.tmpl
File metadata and controls
24 lines (18 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# {{ .Spec.Name }}
{{ .Spec.Description -}}
{{- with .Hints }}
{{ . }}
{{ end }}
## Running the tests
To run the tests, run the command `dotnet test` from within the exercise directory.
Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time.
Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution
using `exercism submit {{ .Spec.MixedCaseName }}.cs`
## Further information
For more detailed information about the C# track, including how to get help if
you're having trouble, please visit the exercism.io [C# language page](http://exercism.io/languages/csharp/resources).
{{ with .Spec.Credits }}
## Source
{{ . }}
{{ end }}