What we want

Pluto should be very accessible for university teachers and students! This docs is about writing exercise notebooks

Teacher's perspective

Preparing a lesson

You use Markdown and hidden code for most things, and sometimes expose a cells that the student has to fill in. You write

golden_ratio = missing
function is_prime(n)
	missing
end

in places where the student needs to write something.

You then write some test cases:

Writing test cases

Autograding

@test makes autograding trivial. The only things we need to add to Julia's built-in system:

Student's perspective

Following a lesson