Skip to content

Commit

Permalink
Feedback exercise added
Browse files Browse the repository at this point in the history
  • Loading branch information
Granjow committed Nov 10, 2015
1 parent e2a02fe commit 90304b8
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
15 changes: 15 additions & 0 deletions exercises/feedback/feedback.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
var path = require( 'path' ),
verify = require( 'adventure-verify' ),
tools = require( '../../library/tools' );

exports.problem = tools.mdProblem( {
mdSource: path.join( __dirname, 'feedback.md' ),
pdfName: 'feedback.pdf'
} );
exports.solution = 'Thank you!';

exports.verify = verify( { modeReset: true }, function checker( args, t ) {

t.end();

} );
14 changes: 14 additions & 0 deletions exercises/feedback/feedback.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Improve this adventure!

Thank you for downloading this adventure!

*Did you like it? Did you miss something? Do you have ideas for new adventures? Did you expect something else?*

Feedback about this adventure is very much appreciated. Be it positive or negative, any comment that helps
improving the exercises is welcome. It also gives me a better understanding of whether it is worth continuing
those adventures.

[Please follow this link](https://github.com/Granjow/graphs-with-javascript/issues/1) to share your opinion,
or feel free to open a new issue.

**Thank you!**
3 changes: 3 additions & 0 deletions runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@ shop.add( 'Reading Problems', function () {
//shop.add( 'Under Siege', function () {
// return require( './exercises/ex4-siege/siege' );
//} );
shop.add( 'Improve it!', function () {
return require( './exercises/feedback/feedback' );
} );

shop.execute( process.argv.slice( 2 ) );

0 comments on commit 90304b8

Please sign in to comment.