-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainBoilerPlateCode.java
More file actions
24 lines (22 loc) · 881 Bytes
/
Copy pathMainBoilerPlateCode.java
File metadata and controls
24 lines (22 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* This is the "Main code of java" */
package com;
//import java.util.Scanner;
//import Sample.*;
public class MainBoilerPlateCode {
public static void main(String[] args) {
// Scanner cin = new Scanner(System.in);
// datatype variable_name = scanner_object_name.related_function_name(); //Ex. int x = sc.Intege
// System.out.println("variable_name = " + variable_name);
//-----------------------------------------------------
System.out.println("Just For Checking");
//-----------------------------------------------------
//Using this code you can test the programs of the packages.
// Text t = new Text();
// t.test();
}
}
/*
* For The Run current file Press "Alt + Shift + F10".
* Once your file get Run and Fixed with the configuration,
then next time if you want to Run that current file then just Press "Shift + F10".
*/