mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
21 lines
262 B
Java
21 lines
262 B
Java
public class Invoke_2
|
|
{
|
|
static int s;
|
|
|
|
public static void foo (int a, int b)
|
|
{
|
|
System.out.println(a + " " + b);
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
foo (bar(), s);
|
|
}
|
|
|
|
public static int bar()
|
|
{
|
|
s = 33;
|
|
return 99;
|
|
}
|
|
}
|
|
|