Back to Tutorials Index... ## Hello World Now that we have created a new Project and know what the different elements of the SceneFlow Editor are, we are ready to start creating our very first application. As it is tradition, we will start with the famous "Hello World" which will help you land all the concepts read so far. Start by dragging two simple nodes to the workspace and renaming them Start and End respectively. Make sure that the node named Start is actually the start node (look for the red arrow). ![Alt text](../../images/tutorials/hellonodes.png) Now drag a timeout edge to the Start node and then click on the 'End' node. You will be asked to input a timeout value. Leave the default for now (you can always change the value by double clicking the edge). We have just created a timeout transition between these two nodes. Now create another timeout transition from 'End' to 'Start' to close the loop. ![Alt text](../../images/tutorials/helloedges.png) It is time to add some functionality to our program, and as the name of the tutorial is, that will be a function that prints "Hello World". For that, please continue to the tutorial on <a href="tut_functions.html">Adding Functions to Nodes</a>.
Back to Tutorials Index...