Hello, World In XAML
Don Box shows the world how to write a program to print “Hello, World” in Microsoft’s new-new-new language, XAML. Simple and easy!
<?Mapping
ClrNamespace="System" Assembly="mscorlib"
XmlNamespace=" http://www.gotdotnet.com/team/dbox/mscorlib/System "
?>
<Object xmlns=" http://www.gotdotnet.com/team/dbox/mscorlib/System "
xmlns:def="Definition"
def:Class="MyApp.Hello"
>
<def:Code><![CDATA[
Shared Sub Main()
'{
System.Console.WriteLine("Hello, world")' ;
'}
End Sub
]]></def:Code>
</Object>