From c9d6cfc4c63dca23eb3f073d0cd7abd08ed05dc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20L=C3=B6vdahl?= Date: Fri, 16 Feb 2024 22:44:33 +0200 Subject: [PATCH 1/2] Fix unintentional duplicate code block prefix in first_steps.md --- src/first_steps.md | 1 - 1 file changed, 1 deletion(-) 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 > From 265ec2bb5f40946faf66b1123a0ceaaf8f111282 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20L=C3=B6vdahl?= Date: Fri, 16 Feb 2024 22:49:43 +0200 Subject: [PATCH 2/2] Similar fix in first_steps/challenges.md --- src/first_steps/challenges.md | 1 - 1 file changed, 1 deletion(-) 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