더시드위키 사용자만 활동이 가능합니다.
더시드위키 장애시 사용 가능한 임시 게시판
모바일 인증 테스트가 가능합니다. 더시드위키의 정책과 같습니다.
r19 vs r20
......
6262
6363== 각종 문법 ==
6464{{{#!syntax csharp
65int a;
69using TMPro;
70
71GameObject player; // 유니티는 안되는듯
72
73int a = 10;
74
75if (a == 10)
76{
77Debug.Log("이건 어찌 뜰까?")
78}
79
80void Start()
81{
82
83}
84
85Void Update()
86{
87
88}
65using UnityEngine; // 주석은?
66using System;
67using System.Collections;
68using System.Collections.Generic;
6689}}}
6790
6891{{{#!syntax python
6992a = int(input())
7093}}}
7194
7295