public class NewBehaviourScript2 : MonoBehaviour
{
void Start()
{
print(1);
print("124234");
Debug.Log(1);
Debug.Log("12312");
Debug.Logwarning("142124");
Debug.LogError("12412412");
}
void Update()
{
print(2);
}