mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
18 lines
341 B
Java
18 lines
341 B
Java
// Class final_static_and_friend
|
|
// Generated on Sat Feb 12 01:58:38 PST 2000
|
|
|
|
class final_static_and_friend {
|
|
final int a = 34;
|
|
static int b = 34;
|
|
int c = 34;
|
|
void foo ()
|
|
{
|
|
System.out.println (a+b+c);
|
|
}
|
|
public static void main (String[] arg)
|
|
{
|
|
new final_static_and_friend ().foo ();
|
|
}
|
|
|
|
}
|