hmm, I’ll write this later.
here’s a little hello in a Unity3D C# script:
using UnityEngine; public class Hello : MonoBehaviour { const string helloMSG = "Hello Readers"; void Awake() { Debug.Log(helloMSG); } }