We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21a9adf commit 7d80982Copy full SHA for 7d80982
BasicJava/src/trick/UniCodeMagic.java
@@ -14,12 +14,16 @@ public class UnicodeMagic {
14
*/
15
public static void main(String[] args) {
16
17
+ // the line below this gives an output
18
+ // \u000d System.out.println("comment executed");
19
+
20
// no error in naming variable as below
21
int $_ = 5;
22
- // the line below this gives an output
- // \u000d System.out.println("comment executed");
-
23
+ long longWithL = 1000*60*60*24*365L;
24
+ long longWithoutL = 1000*60*60*24*365;
25
+ System.out.println(longWithL);
26
+ System.out.println(longWithoutL);
27
}
28
29
0 commit comments