Skip to content

Commit 5dec6f7

Browse files
SeunMattmaibin
authored andcommitted
added example code for BAEL-2418 (eugenp#5882)
* added example code for BAEL-2366 * moved example code for BAEL-2366 * example code for BAEL-1961 * moved example code into integration test * updated the test assertions * refactor the spring boot persistence mongodb module * remove redundant example code * declared the spring boot persistence module in the root pom * fixed issue with non-imported file * added example code for BAEL-2418
1 parent 36decb4 commit 5dec6f7

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package com.baeldung.basicsyntax;
2+
3+
public class SimpleAddition {
4+
5+
public static void main(String[] args) {
6+
int a = 10;
7+
int b = 5;
8+
double c = a + b;
9+
System.out.println( a + " + " + b + " = " + c);
10+
}
11+
}

0 commit comments

Comments
 (0)