Files
gitbook/test/fixtures/SECTIONS.md
T
2014-04-10 02:27:42 -07:00

573 B

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.

var x =
var x = 10;
assert(x == 10);
// 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.

var x =
var x = 10;
assert(x == 10);