Hello world!

using UnityEngine;

public class NewChapterOfMyLife : MonoBehaviour {

    // Use this for initialization
    void Start() {
        Debug.Log("Hello world!");
    }
    
    // Update is called once per frame
    void Update() {
        // TODO: Optimize. Of course we love Unity,
        // but we shouldn't say that every frame.
        // Let the splash screen take care of that!
        Debug.Log("Unity is awesome!");
    }
}