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
Binary file added a.out
Binary file not shown.
Binary file added asdf.class
Binary file not shown.
18 changes: 18 additions & 0 deletions asdf.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import java.util.Scanner;
import java.util.*;

public class asdf {
private String s;
private List<Integer>list;

public void print(){
System.out.println("test");
}

public static void main(String[] args){
new asdf().print();
new asdf().list = new ArrayList<>();
Scanner sc = new Scanner(System.in);
int i = sc.nextInt();
}
}