Hello World
From Unify Community Wiki
(Difference between revisions)
m (Text replace - "</javascript>" to "</syntaxhighlight>") |
m (Text replace - "</boo>" to "</syntaxhighlight>") |
||
(One intermediate revision by one user not shown) | |||
Line 24: | Line 24: | ||
==== Boo - BooHelloWorld.boo ==== | ==== Boo - BooHelloWorld.boo ==== | ||
− | <boo>import UnityEngine | + | <syntaxhighlight lang="boo">import UnityEngine |
class BooHelloWorld (MonoBehaviour): | class BooHelloWorld (MonoBehaviour): | ||
def Start (): | def Start (): | ||
− | print("Hello World")</ | + | print("Hello World")</syntaxhighlight> |
Latest revision as of 20:57, 10 January 2012
Contents |
[edit] Description
Example of traditional "Hello World" with Unity3D in three support languages.
The output is sent to the console window in Unity3D Editor.
[edit] Code
[edit] UnityScript - HelloWorld.js
print("Hello World");
[edit] C# - CSHelloWorld.cs
using UnityEngine; class CSHelloWorld : MonoBehaviour { void Start() { print("Hello World"); } }
[edit] Boo - BooHelloWorld.boo
import UnityEngine class BooHelloWorld (MonoBehaviour): def Start (): print("Hello World")