diff --git a/.lycheeignore b/.lycheeignore index 9fadf5b4..e918d2c1 100644 --- a/.lycheeignore +++ b/.lycheeignore @@ -1 +1,2 @@ https://www.reddit.com/r/dartlang +https://stackoverflow.com/questions/tagged/dart diff --git a/config.json b/config.json index 0f5a9547..eb449e8e 100644 --- a/config.json +++ b/config.json @@ -36,6 +36,32 @@ ] }, "exercises": { + "concept": [ + { + "slug": "futures", + "name": "futures", + "uuid": "cf1093f0-3a6b-4ad1-83a9-a8d9b2a57991", + "concepts": [], + "prerequisites": [], + "status": "deprecated" + }, + { + "slug": "numbers", + "name": "numbers", + "uuid": "714711a6-1be7-4540-9d44-87b1e58417fc", + "concepts": [], + "prerequisites": [], + "status": "deprecated" + }, + { + "slug": "strings", + "name": "strings", + "uuid": "1b7e3737-0333-4eee-b425-2e84b2e09fe2", + "concepts": [], + "prerequisites": [], + "status": "deprecated" + } + ], "practice": [ { "slug": "hello-world", diff --git a/exercises/concept/futures/.docs/hints.md b/exercises/concept/futures/.docs/hints.md new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/futures/.docs/instructions.md b/exercises/concept/futures/.docs/instructions.md new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/futures/.docs/introduction.md b/exercises/concept/futures/.docs/introduction.md new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/futures/.meta/config.json b/exercises/concept/futures/.meta/config.json new file mode 100644 index 00000000..dff57ad6 --- /dev/null +++ b/exercises/concept/futures/.meta/config.json @@ -0,0 +1,17 @@ +{ + "authors": [ + "glennj" + ], + "files": { + "solution": [ + "lib/futures.dart" + ], + "test": [ + "test/futures_test.dart" + ], + "exemplar": [ + ".meta/exemplar.dart" + ] + }, + "blurb": "TODO: add blurb" +} diff --git a/exercises/concept/futures/.meta/exemplar.dart b/exercises/concept/futures/.meta/exemplar.dart new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/futures/lib/futures.dart b/exercises/concept/futures/lib/futures.dart new file mode 100644 index 00000000..70b786d1 --- /dev/null +++ b/exercises/concept/futures/lib/futures.dart @@ -0,0 +1 @@ +// TODO diff --git a/exercises/concept/futures/pubspec.yaml b/exercises/concept/futures/pubspec.yaml new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/futures/test/futures_test.dart b/exercises/concept/futures/test/futures_test.dart new file mode 100644 index 00000000..70b786d1 --- /dev/null +++ b/exercises/concept/futures/test/futures_test.dart @@ -0,0 +1 @@ +// TODO diff --git a/exercises/concept/numbers/.docs/hints.md b/exercises/concept/numbers/.docs/hints.md new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/numbers/.docs/instructions.md b/exercises/concept/numbers/.docs/instructions.md new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/numbers/.docs/introduction.md b/exercises/concept/numbers/.docs/introduction.md new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/numbers/.meta/config.json b/exercises/concept/numbers/.meta/config.json new file mode 100644 index 00000000..45590561 --- /dev/null +++ b/exercises/concept/numbers/.meta/config.json @@ -0,0 +1,17 @@ +{ + "authors": [ + "glennj" + ], + "files": { + "solution": [ + "lib/numbers.dart" + ], + "test": [ + "test/numbers_test.dart" + ], + "exemplar": [ + ".meta/exemplar.dart" + ] + }, + "blurb": "TODO: add blurb" +} diff --git a/exercises/concept/numbers/.meta/exemplar.dart b/exercises/concept/numbers/.meta/exemplar.dart new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/numbers/lib/numbers.dart b/exercises/concept/numbers/lib/numbers.dart new file mode 100644 index 00000000..70b786d1 --- /dev/null +++ b/exercises/concept/numbers/lib/numbers.dart @@ -0,0 +1 @@ +// TODO diff --git a/exercises/concept/numbers/pubspec.yaml b/exercises/concept/numbers/pubspec.yaml new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/numbers/test/numbers_test.dart b/exercises/concept/numbers/test/numbers_test.dart new file mode 100644 index 00000000..70b786d1 --- /dev/null +++ b/exercises/concept/numbers/test/numbers_test.dart @@ -0,0 +1 @@ +// TODO diff --git a/exercises/concept/strings/.docs/hints.md b/exercises/concept/strings/.docs/hints.md new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/strings/.docs/instructions.md b/exercises/concept/strings/.docs/instructions.md new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/strings/.docs/introduction.md b/exercises/concept/strings/.docs/introduction.md new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/strings/.meta/config.json b/exercises/concept/strings/.meta/config.json new file mode 100644 index 00000000..35d3f45b --- /dev/null +++ b/exercises/concept/strings/.meta/config.json @@ -0,0 +1,17 @@ +{ + "authors": [ + "glennj" + ], + "files": { + "solution": [ + "lib/strings.dart" + ], + "test": [ + "test/strings_test.dart" + ], + "exemplar": [ + ".meta/exemplar.dart" + ] + }, + "blurb": "TODO: add blurb" +} diff --git a/exercises/concept/strings/.meta/exemplar.dart b/exercises/concept/strings/.meta/exemplar.dart new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/strings/lib/strings.dart b/exercises/concept/strings/lib/strings.dart new file mode 100644 index 00000000..70b786d1 --- /dev/null +++ b/exercises/concept/strings/lib/strings.dart @@ -0,0 +1 @@ +// TODO diff --git a/exercises/concept/strings/pubspec.yaml b/exercises/concept/strings/pubspec.yaml new file mode 100644 index 00000000..e69de29b diff --git a/exercises/concept/strings/test/strings_test.dart b/exercises/concept/strings/test/strings_test.dart new file mode 100644 index 00000000..70b786d1 --- /dev/null +++ b/exercises/concept/strings/test/strings_test.dart @@ -0,0 +1 @@ +// TODO