mirror of
https://github.com/corda/corda.git
synced 2025-01-17 02:09:50 +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;
|
|
}
|
|
}
|