Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio

# plz read fucking readme.md
/src/main/resources/application.yml

*.iml
*.json

.idea/*
.idea/
out/
debug/

## Plugin-specific files:

# IntelliJ
/out/

# mpeltonen/sbt-idea plugin
.idea_modules/

*.class
*.jar
*.war
*.ear
*.tmp
*.exe

thumbs.db
.DS_Store
*.log

test/
target/generated-sources/
target/
/.classpath
/.project
.settings/
Binary file removed HelloWorld/Main.class
Binary file not shown.
7 changes: 4 additions & 3 deletions HelloWorld/Main.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package HelloWorld;

import java.time.LocalDateTime;

public class Main {
public static void main(String[] args) throws InterruptedException {
boolean flag = true;
System.out.println("Hello world");
System.out.println("Hello from Andrew");
System.out.println("Hello again");
while(flag != false) {
System.out.println("I'm alive!");
while(true) {
System.out.println("["+LocalDateTime.now() +"] :"+"I'm alive!");
Thread.sleep(1000);
}
}
Expand Down
Binary file modified app/Main.jar
Binary file not shown.