using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class PremierScript : MonoBehaviour
{
    // Etape 16
    //private int i;
    // Start is called before the first frame update
    void Start()
    {
        Debug.Log("Hello World !");
        // Etape 16
        //i = 0;
    }

    // Update is called once per frame
    void Update()
    {
        // Etape 16
        //i++;
        //Debug.Log("Je boucle " + i.ToString() + " fois.");
    }
}
