Skip to content

Commit

Permalink
merge feature2
Browse files Browse the repository at this point in the history
  • Loading branch information
fpieschaconr committed May 22, 2019
1 parent a2a0992 commit 0fd7dbe
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions test/menu/src/Sumatoria.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/

/**
*
* @author Tom Perez
*/

public class Sumatoria {
public static int suma(int x, int y){
int z = x+y;
return z;
}

}

0 comments on commit 0fd7dbe

Please sign in to comment.