added tenmplate for starting main class

This commit is contained in:
Aditya Mayukh Som
2024-03-21 17:49:29 +05:30
parent f9f73256d5
commit e114637935

View File

@ -16,4 +16,9 @@ import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;\n
''';
final String kTemplateStart = '''
public class Main {
public static void main(String[] args) {
''';
}