/test-github

sogang open-source workshop

Primary LanguageJavaMIT LicenseMIT

2017.8.9 test-github

sogang open-source workshop

  1. 여러가지 git 기능들을 사용해 본다.
  • __SourceTree__를 사용해 본다.
  • __Atom editor__를 사용해 본다.
  1. 마크다운의 사용법을 알아본다.
  2. 공부한 내용을 직접 실습에서 사용해 본다.

실습해본 JAVA code

pakage com.mycompany.test;
public class Calculator {
  public static void main(String[] args){
    int a = 4;
    int b = 2;
    System.out.println(sum(a,b));
    System.out.println(minus(a,b));
  }
  private static int sum(int a,int b){
    return a+b;
  }
  private static int minus(int a,int b){
    return a-b;
  }
}