diff --git a/src/first_steps.md b/src/first_steps.md index bd4cb09..d8bbf5b 100644 --- a/src/first_steps.md +++ b/src/first_steps.md @@ -16,7 +16,6 @@ Its a tradition for this to be your first program in any language. We aren't quite at the point where I can explain what `void main()` means, but all you need to know for now is that it is what Java looks for to know where to start the program. -```java,no_run ```java,no_run void main() { < WRITE YOUR CODE HERE > diff --git a/src/first_steps/challenges.md b/src/first_steps/challenges.md index 82ad037..0584a1b 100644 --- a/src/first_steps/challenges.md +++ b/src/first_steps/challenges.md @@ -12,7 +12,6 @@ The rules for this are Write a program that prints your name twice. So if your name is "Jasmine", the output of the program should be this. -```text,no_run ```text,no_run Jasmine Jasmine