This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sdi/Assets/hello.cs
UVCLimHun bae3d22054
All checks were successful
Code Review / code-review (pull_request) Successful in 10s
Update hello.cs
2025-04-17 17:00:15 +09:00

28 lines
474 B
C#

using System.Collections;
using System.Collections.Generic;
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
void Update()
{
}
public int up(int o)
{
return o++;
}
}