Skip to content

Commit 0fe14dd

Browse files
committed
Remove italics from description and fix indentation
1 parent f3f48e2 commit 0fe14dd

File tree

14 files changed

+51
-44
lines changed

14 files changed

+51
-44
lines changed

compiled_starters/go/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
This is a starting point for Go solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_In this challenge, you'll build your own POSIX compliant shell that's capable
7-
of interpreting shell commands, running external programs and builtin commands
8-
like cd, pwd, echo and more. Along the way, you'll learn about shell command
9-
parsing, REPLs, builtin commands, and more._
6+
In this challenge, you'll build your own POSIX compliant shell that's capable of
7+
interpreting shell commands, running external programs and builtin commands like
8+
cd, pwd, echo and more. Along the way, you'll learn about shell command parsing,
9+
REPLs, builtin commands, and more.
1010

1111
**Note**: If you're viewing this repo on GitHub, head over to
1212
[codecrafters.io](https://codecrafters.io) to try the challenge.

compiled_starters/java/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
This is a starting point for Java solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_In this challenge, you'll build your own POSIX compliant shell that's capable
7-
of interpreting shell commands, running external programs and builtin commands
8-
like cd, pwd, echo and more. Along the way, you'll learn about shell command
9-
parsing, REPLs, builtin commands, and more._
6+
In this challenge, you'll build your own POSIX compliant shell that's capable of
7+
interpreting shell commands, running external programs and builtin commands like
8+
cd, pwd, echo and more. Along the way, you'll learn about shell command parsing,
9+
REPLs, builtin commands, and more.
1010

1111
**Note**: If you're viewing this repo on GitHub, head over to
1212
[codecrafters.io](https://codecrafters.io) to try the challenge.

compiled_starters/java/src/main/java/Main.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
// Uncomment this block to pass the first stage
2-
// import java.util.Scanner;
2+
// import java.util.Scanner;
33

44
public class Main {
55
public static void main(String[] args) throws Exception {
66
// You can use print statements as follows for debugging, they'll be visible when running tests.
77
System.out.println("Logs from your program will appear here!");
88

9-
System.out.print("$ ");
109
// Uncomment this block to pass the first stage
10+
// System.out.print("$ ");
11+
//
1112
// Scanner scanner = new Scanner(System.in);
1213
// String input = scanner.nextLine();
1314
}

compiled_starters/python/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
This is a starting point for Python solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_In this challenge, you'll build your own POSIX compliant shell that's capable
7-
of interpreting shell commands, running external programs and builtin commands
8-
like cd, pwd, echo and more. Along the way, you'll learn about shell command
9-
parsing, REPLs, builtin commands, and more._
6+
In this challenge, you'll build your own POSIX compliant shell that's capable of
7+
interpreting shell commands, running external programs and builtin commands like
8+
cd, pwd, echo and more. Along the way, you'll learn about shell command parsing,
9+
REPLs, builtin commands, and more.
1010

1111
**Note**: If you're viewing this repo on GitHub, head over to
1212
[codecrafters.io](https://codecrafters.io) to try the challenge.

compiled_starters/rust/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
This is a starting point for Rust solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_In this challenge, you'll build your own POSIX compliant shell that's capable
7-
of interpreting shell commands, running external programs and builtin commands
8-
like cd, pwd, echo and more. Along the way, you'll learn about shell command
9-
parsing, REPLs, builtin commands, and more._
6+
In this challenge, you'll build your own POSIX compliant shell that's capable of
7+
interpreting shell commands, running external programs and builtin commands like
8+
cd, pwd, echo and more. Along the way, you'll learn about shell command parsing,
9+
REPLs, builtin commands, and more.
1010

1111
**Note**: If you're viewing this repo on GitHub, head over to
1212
[codecrafters.io](https://codecrafters.io) to try the challenge.

solutions/go/01-oo8/code/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
This is a starting point for Go solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_In this challenge, you'll build your own POSIX compliant shell that's capable
7-
of interpreting shell commands, running external programs and builtin commands
8-
like cd, pwd, echo and more. Along the way, you'll learn about shell command
9-
parsing, REPLs, builtin commands, and more._
6+
In this challenge, you'll build your own POSIX compliant shell that's capable of
7+
interpreting shell commands, running external programs and builtin commands like
8+
cd, pwd, echo and more. Along the way, you'll learn about shell command parsing,
9+
REPLs, builtin commands, and more.
1010

1111
**Note**: If you're viewing this repo on GitHub, head over to
1212
[codecrafters.io](https://codecrafters.io) to try the challenge.

solutions/java/01-oo8/code/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
This is a starting point for Java solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_In this challenge, you'll build your own POSIX compliant shell that's capable
7-
of interpreting shell commands, running external programs and builtin commands
8-
like cd, pwd, echo and more. Along the way, you'll learn about shell command
9-
parsing, REPLs, builtin commands, and more._
6+
In this challenge, you'll build your own POSIX compliant shell that's capable of
7+
interpreting shell commands, running external programs and builtin commands like
8+
cd, pwd, echo and more. Along the way, you'll learn about shell command parsing,
9+
REPLs, builtin commands, and more.
1010

1111
**Note**: If you're viewing this repo on GitHub, head over to
1212
[codecrafters.io](https://codecrafters.io) to try the challenge.

solutions/java/01-oo8/code/src/main/java/Main.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
import java.util.Scanner;
1+
import java.util.Scanner;
22

33
public class Main {
44
public static void main(String[] args) throws Exception {
55
System.out.print("$ ");
6+
67
Scanner scanner = new Scanner(System.in);
78
String input = scanner.nextLine();
89
}

solutions/java/01-oo8/diff/src/main/java/Main.java.diff

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
@@ -1,14 +1,9 @@
1+
@@ -1,15 +1,10 @@
22
-// Uncomment this block to pass the first stage
3-
-// import java.util.Scanner;
4-
+ import java.util.Scanner;
3+
-// import java.util.Scanner;
4+
+import java.util.Scanner;
55

66
public class Main {
77
public static void main(String[] args) throws Exception {
88
- // You can use print statements as follows for debugging, they'll be visible when running tests.
99
- System.out.println("Logs from your program will appear here!");
10-
-
11-
System.out.print("$ ");
10+
+ System.out.print("$ ");
11+
1212
- // Uncomment this block to pass the first stage
13+
- // System.out.print("$ ");
14+
- //
1315
- // Scanner scanner = new Scanner(System.in);
1416
- // String input = scanner.nextLine();
1517
+ Scanner scanner = new Scanner(System.in);

solutions/java/01-oo8/explanation.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ Study and uncomment the relevant code:
44

55
```java
66
// Uncomment this block to pass the first stage
7-
import java.util.Scanner;
7+
import java.util.Scanner;
88
```
99

1010
```java
1111
// Uncomment this block to pass the first stage
12+
System.out.print("$ ");
13+
1214
Scanner scanner = new Scanner(System.in);
1315
String input = scanner.nextLine();
1416
```

0 commit comments

Comments
 (0)