-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from exercism/prepare-for-launch
Prepare for launch
- Loading branch information
Showing
6 changed files
with
58 additions
and
358 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,10 @@ | ||
# {{ .Spec.Name }} | ||
# Help | ||
|
||
{{ .Spec.Description -}} | ||
{{- with .Hints }} | ||
{{ . -}} | ||
{{ end }} | ||
{{- with .TrackInsert }} | ||
{{ . -}} | ||
{{ end }} | ||
{{- with .Spec.Credits }} | ||
## Source | ||
To get help if you're having trouble, you can use one of the following resources: | ||
|
||
- [Nuvoc](https://code.jsoftware.com/wiki/NuVoc) | ||
- [/r/apljk](https://www.reddit.com/r/apljk) subreddit for APL and their descencents. | ||
- [discord](https://discord.gg/jA4pRNx5) discord channel for array programming languages. | ||
|
||
{{ . }} | ||
{{ end }} | ||
## Submitting Incomplete Solutions | ||
It's possible to submit an incomplete solution so you can see how others have completed the exercise. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,22 @@ | ||
# {{ .Spec.Name }} | ||
# Tests | ||
|
||
{{ .Spec.Description -}} | ||
{{- with .Hints }} | ||
{{ . -}} | ||
{{ end }} | ||
{{- with .TrackInsert }} | ||
{{ . -}} | ||
{{ end }} | ||
{{- with .Spec.Credits }} | ||
## Source | ||
To run the tests follow these steps: | ||
|
||
{{ . }} | ||
{{ end }} | ||
## Submitting Incomplete Solutions | ||
It's possible to submit an incomplete solution so you can see how others have completed the exercise. | ||
- Head to the problem directory (eg `~/Exercism/hello-world`). | ||
- Start a `jconsole` session (eg by typing `jconsole` or `ijconsole`) in a terminal. | ||
- Load your solution file (eg `load 'hello-world.ijs'`) | ||
- Load the unit test framework by typing `load 'general/unittest'` | ||
- Test your solution by typing `unittest 'test.ijs'`. | ||
|
||
|
||
## Skipped tests | ||
|
||
At first, only the initial test will be enabled. This approach encourages you to solve the exercise step by step. Each test includes a noun above its definition, with a name ending in _'_ignore'_. To run the test, change its value to 0. | ||
|
||
### Example: | ||
``` | ||
leap_test_02_ignore=: 1 NB. Change this value to 0 to run this test | ||
test_leap_test_02 =: monade define | ||
... NB. test definitions | ||
) | ||
``` |
Oops, something went wrong.