- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
Latest commit
20 lines (17 loc) · 429 Bytes
/
Copy pathMain.java
File metadata and controls
20 lines (17 loc) · 429 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
importutils.Context;
/**
* @project Version Control System
* @author Alin-Andrei Georgescu
* (C)Copyright 2018
*/
publicfinalclassMain {
privateMain() {
}
publicstaticvoidmain(finalString[] args) {
Stringinput = args[0];
Stringoutput = args[1];
Contextcontext = Context.getInstance();
context.init(input, output);
context.run();
}
}