diff options
Diffstat (limited to 'test/fixtures/SECTIONS.md')
-rw-r--r-- | test/fixtures/SECTIONS.md | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/test/fixtures/SECTIONS.md b/test/fixtures/SECTIONS.md deleted file mode 100644 index 3405605..0000000 --- a/test/fixtures/SECTIONS.md +++ /dev/null @@ -1,68 +0,0 @@ -# Title - -Some text - ---- - -## NOT Exercise - -Simple subsection NOT exercise - -``` -x = 1 -``` - -What is this - -``` -y = [1, 2, 3] -``` - -``` -z = {a: 1, b: 2} -``` - ---- - -## Exercise - -Define a variable `x` equal to 10. - -```js -var x = -``` - -```js -var x = 10; -``` - -```js -assert(x == 10); -``` - -```js -// This is context code available everywhere -// The user will be able to call magicFunc in his code -function magicFunc() { - return 3; -} -``` - ---- - -## Another exercise - -Bla bla bla ... This time with no `context` code. - - -```js -var x = -``` - -```js -var x = 10; -``` - -```js -assert(x == 10); -``` |