the-grinchh / lab3

0 stars 0 forks source link

Example.java #1

Open the-grinchh opened 2 weeks ago

the-grinchh commented 2 weeks ago

public class Example { public static void main(String[] args) { int unusedVariable = 0; // Unused variable System.out.println("Hello World!"); if (true) { // Empty block } System.out.println("This line exceeds the 100 character limit which is a common style issue that linters might flag as problematic"); } }