using System.Collections; using System.Collections.Generic; using UnityEngine; public class Statements : MonoBehaviour { // Use this for initialization void Start () { print ("Hello World"); print ("Today, we will be learning about C#"); //This is a single-line comment /* * This is a multi-line comment * * * * */ } // Update is called once per frame void Update () { } }