2.4.2 변수와 연산 using System.Collections; using System.Collections.Generic; using UnityEngine; // 유니티가 동작하는데 필요한 기능 제공 public class test : MonoBehaviour { // Start is called before the first frame update void Start() { int answer; answer = 1 + 2; Debug.Log(answer); } } 결과값 보기 더보기 3 ※ 사칙 연산하기 using System.Collections; using System.Collections.Generic; using UnityEngine; // 유니티가 동작하는데 필요한 기능 제공 publi..