| r19 vs r20 | ||
|---|---|---|
| ... | ... | |
| 62 | 62 | |
| 63 | 63 | == 각종 문법 == |
| 64 | 64 | {{{#!syntax csharp |
| 65 | in | |
| 69 | using TMPro; | |
| 70 | ||
| 71 | GameObject player; // 유니티는 안되는듯 | |
| 72 | ||
| 73 | int a = 10; | |
| 74 | ||
| 75 | if (a == 10) | |
| 76 | { | |
| 77 | Debug.Log("이건 어찌 뜰까?") | |
| 78 | } | |
| 79 | ||
| 80 | void Start() | |
| 81 | { | |
| 82 | ||
| 83 | } | |
| 84 | ||
| 85 | Void Update() | |
| 86 | { | |
| 87 | ||
| 88 | } | |
| 65 | using UnityEngine; // 주석은? | |
| 66 | using System; | |
| 67 | using System.Collections; | |
| 68 | using System.Collections.Generic; | |
| 66 | 89 | }}} |
| 67 | 90 | |
| 68 | 91 | {{{#!syntax python |
| 69 | 92 | a = int(input()) |
| 70 | 93 | }}} |
| 71 | 94 | |
| 72 | 95 |