Created
April 16, 2018 01:31
-
-
Save leosabbir/cfe3d9eed08859f4921e68b038217466 to your computer and use it in GitHub Desktop.
template file for file type java for sublime
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* File: $name.java | |
* Created: $date2 | |
* Author: $author | |
* | |
* Copyright (c) $year https://manandharsabbirk.appspot.com | |
*/ | |
import java.io.*; | |
import java.util.*; | |
public class $name{ | |
//--------------------------------------------------------------------------------- | |
/** | |
* main method | |
*/ | |
public static void main (String [] args) throws IOException{ | |
Scanner input = new Scanner(System.in); | |
} // main | |
//--------------------------------------------------------------------------------- | |
} // $name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment