diff options
Diffstat (limited to 'test/fixtures/PAGE.md')
-rw-r--r-- | test/fixtures/PAGE.md | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/test/fixtures/PAGE.md b/test/fixtures/PAGE.md deleted file mode 100644 index 77a6ce9..0000000 --- a/test/fixtures/PAGE.md +++ /dev/null @@ -1,68 +0,0 @@ -# Python basics - -Python is a nice language, you can add stuff. Bla bla bla. - -Lets jump into an exercise : - ---- - -It's dead simple, `c` must be the sum of `a` and `b` - -```py -a = 1 -b = 2 -``` - -```py -a = 1 -b = 2 -c = a + b -``` - -```py -assert(c, 3) -``` - ---- - -Some more nice content .... - -[Cool stuff](http://gitbook.com) - -[Link to another Markdown file](./xyz/file.md) - -And look at this pretty picture: - - -Lets go for another exercise but this time with some context : - ---- - -Exercise with some context code : - -Using the `double` function provided, build a `quadruple` function - -```py - -``` - -```py - -def quadruple(x): - return double(double(x)) - -``` - -```py -assert(quadruple(8), 32) -``` - -```py - -def double(x): - return x * 2 - -``` - ---- - |