We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dc0d06 commit 1d67ce6Copy full SHA for 1d67ce6
JS-Algo/test.md
@@ -0,0 +1,31 @@
1
+```java
2
+
3
+if(carYear < 1968) {
4
+ System.out.println('Something...');
5
+}; <--error
6
7
+else if(carYear < 1968) {
8
9
10
11
+while(i > 10); <--error {
12
13
+}
14
15
+for(int i = 0; i < 10; i++; <--error) {
16
17
+ <-- Missed a curly braces
18
19
+```
20
21
22
+int a = 17;
23
+int b = 21;
24
+if(a == b); {
25
+ System.out.println("You are allowed to enter the bar");
26
27
28
29
30
+You are allowed to enter the bar
31
0 commit comments