<canvas height="200" width="400">
    <simplelayout axis="y" spacing="10"/>

    <text font="serif" fontsize="20" fontstyle="bold">
        Hello, World!
    </text>

    <button text="Click Me">
        <handler name="onclick">
            Debug.write("Button was clicked!");
        </handler>
    </button>

    <view bgcolor="#ccccff" width="200" height="50">
        <text x="10" y="15">This is a Laszlo view</text>
    </view>
</canvas>