Welcome to mirror list, hosted at ThFree Co, Russian Federation.

java-class-member-function « t4018 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b95f68b3b0c8252f083e549332244175ece6d0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
public class Beer
{
	int special;
	public static void main(String RIGHT[])
	{
		someMethodCall();
		someOtherMethod("17")
			.doThat();
		// Whatever
		System.out.print("ChangeMe");
	}
}