-
Notifications
You must be signed in to change notification settings - Fork 48
First set of exercises for Interacting with the user #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Currently just code for exercises. No intro text, descriptions, or help.
@zspencer another set of exercises for ya to review... |
console.log('Encrypted message: ' + encrypted); | ||
rl.prompt(); | ||
}); | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this file added by accident?
I'd be down for merging once the stdin/stdout exercises are either turned into exercises or removed. Currently they don't have any instructions/expected results. |
Using minimist node package, students will write a script that accepts many options when run from the command line.
Added the text to STDIN and STDOUT exercises. Lemme know what you think, @zspencer |
seriously | ||
bye | ||
bye | ||
^C |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
May want to note this is "Ctrl + C"
👍 looks good. Merge at your leisure |
First set of exercises for Interacting with the user
The primary exercises in this set are the ones in "Command Line Arguments". There aren't a ton of them, but they are complete and read to go.
I drafted a set of exercises to go over STDIN and STDOUT using node's
readline
module. If they'd be useful, I can complete the set. It might be a bit too confusing though. Lots of room to get confused about how streams work.