Skip to content
Example1.java 316 B
Newer Older
Javier Costa's avatar
Javier Costa committed
package tfm.programs.sdg;

import tfm.utils.Logger;

public class Example1 {

    public static void main(String[] args) {
        int x = 1;
        int y = 2;

        int f = sum(x, y);

        Logger.log(f);
    }

    private static int sum(int x, int y) {
Javier Costa's avatar
Javier Costa committed
        int res = x + y;
        return res;
Javier Costa's avatar
Javier Costa committed
    }
}