You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* lists available exercises for a given language and explains how to fetch them
* returns error for unknown languages
* Resolves issue #89
* Fetches the track for a specific language using the /tracks/:language endopoint on the XAPI.
Copy file name to clipboardExpand all lines: exercism/main.go
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ const (
29
29
30
30
descLongRestore="Restore will pull the latest revisions of exercises that have already been submitted. It will *not* overwrite existing files. If you have made changes to a file and have not submitted it, and you're trying to restore the last submitted version, first move that file out of the way, then call restore."
31
31
descDownload="Downloads and saves a specified submission into the local system"
32
+
descList="Lists all available assignments for a given language"
0 commit comments