Skip to content

Instantly share code, notes, and snippets.

@joonlim92
Forked from mindwing/D1_HelloWorld.java
Last active September 5, 2015 08:07
Show Gist options
  • Save joonlim92/b30eda6a453602057852 to your computer and use it in GitHub Desktop.
Save joonlim92/b30eda6a453602057852 to your computer and use it in GitHub Desktop.
[1일차] Hello World 예제
/**
* Fast Campus 안드로이드 앱 개발 입문
* Java for Android (by mindwing)
* [1일차] 강의노트 - 변수, 연산자, 선택문, 반복문
* 필수 예제1
*/
public class D1_HelloWorld {
public static void main(String[] args) {
System.out.println("안녕 세상");
System.out.print("제 이름은 임준세 입니다");
}
}
@mindwing
Copy link

mindwing commented Sep 2, 2015

잘 하셨습니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment