crcastle/collaborative-code-conference

View on GitHub
src/server/instructions.js

Summary

Maintainability
A
0 mins
Test Coverage
var starterInstructions = '/*\n\n' +
                          'This is a collaborative, real-time code editor.\n' +
                          'Share the URL with anyone you want to write code with!\n' +
                          '\n*/\n\n';
var starterCode = 'function foo() {\n' +
                  '  return \'bar\';\n' +
                  '}';
module.exports = starterInstructions + starterCode;