mirror of
https://github.com/corda/corda.git
synced 2025-01-22 12:28:11 +00:00
8 lines
120 B
Java
8 lines
120 B
Java
public class Simple {
|
|
public static void main(String[] args) {
|
|
int a = 1;
|
|
int b = 2;
|
|
int c = a + b;
|
|
}
|
|
}
|