mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
20 lines
320 B
Java
20 lines
320 B
Java
public class Instructions {
|
|
private String foo(String s) {
|
|
return s;
|
|
}
|
|
|
|
public String bar(String s) {
|
|
return s;
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
int a = 2;
|
|
int b = 2;
|
|
int c = a + b;
|
|
|
|
// Instructions i = new Instructions();
|
|
// i.foo("hello");
|
|
// i.bar("hello");
|
|
}
|
|
}
|