-
Notifications
You must be signed in to change notification settings - Fork 10
Add Java support #5
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
compiled_starters/go/README.md
Outdated
@@ -3,7 +3,10 @@ | |||
This is a starting point for Go solutions to the | |||
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview). | |||
|
|||
_Add a description of your course here_ | |||
_In this challenge, you'll build your own POSIX compliant shell that's capable |
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.
(Same as others - remove italics)
// You can use print statements as follows for debugging, they'll be visible when running tests. | ||
System.out.println("Logs from your program will appear here!"); | ||
|
||
System.out.print("$ "); |
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.
@@ -0,0 +1,9 @@ | |||
import java.util.Scanner; |
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.
Inconsistent indentation
No description provided.