mirror of
https://github.com/corda/corda.git
synced 2025-01-04 04:04:27 +00:00
8 lines
126 B
Java
8 lines
126 B
Java
public class Instructions {
|
|
public static void main(String[] args) {
|
|
int a = 2;
|
|
int b = 2;
|
|
int c = a + b;
|
|
}
|
|
}
|