Hello World
From Unify Community Wiki
Contents |
Description
Example of traditional "Hello World" with Unity3D in three support languages.
The output is sent to the console window in Unity3D Editor.
Code
UnityScript - HelloWorld.js
<javascript>print("Hello World");</javascript>
C# - CSHelloWorld.cs
<csharp>using UnityEngine;
class CSHelloWorld : MonoBehaviour { void Start() { print("Hello World"); } }</csharp>
Boo - BooHelloWorld.boo
<boo>import UnityEngine
class BooHelloWorld (MonoBehaviour): def Start (): print("Hello World")</boo>