Merge branch 'test29' into test30
All checks were successful
Code Review / code-review (pull_request) Successful in 3s

This commit is contained in:
2025-04-17 17:22:59 +09:00

View File

@@ -4,11 +4,14 @@ using UnityEngine;
public class hello : MonoBehaviour
{
int count = 0;
string Hello = "";
// Start is called before the first frame update
void Start()
{
Debug.Log("test for gpt code review");
Debug.Log("test2");
up(count);
}
// Update is called once per frame
@@ -16,4 +19,9 @@ public class hello : MonoBehaviour
{
}
public int up(int o)
{
return o++;
}
}