using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class test : MonoBehaviour
{
void Start()
{
int[] a = new int[50];
for(int i = 0; i < a.Length; ++i)
{
a[i] = i;
}
}
// Update is called once per frame
void Update()
{
}
}