We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fb6957 commit 0e17e0dCopy full SHA for 0e17e0d
1 file changed
04/Done/Hello Coding/Assets/HelloCode.cs
@@ -13,13 +13,15 @@ void Start() {
13
int age = 17;
14
float height = 168.3f;
15
bool isFemale = true;
16
+ var country = "영국";
17
18
// 생성한 변수들을 콘솔에 출력
19
Debug.Log("캐릭터 이름 : " + characterName);
20
Debug.Log("혈액형 : " + bloodType);
21
Debug.Log("나이 : " + age);
22
Debug.Log("키 : " + height);
23
Debug.Log("여성인가? : " + isFemale);
24
+ Debug.Log("출신 국가 : " + country);
25
26
// GetDistance() 메서드로 (2,2) 에서 (5,6) 사이의 거리 구하기
27
float distance = GetDistance(2, 2, 5, 6);
0 commit comments