RosettaCodeData/Task/Hello-world-Text/Dylan.NET/hello-world-text-2.dylan.net

17 lines
287 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
//compile using the new dylan.NET v, 11.5.1.2 or later
2013-04-10 21:29:02 -07:00
//use mono to run the compiler
#refstdasm mscorlib.dll
import System
assembly helloworld exe
ver 1.2.0.0
2015-02-20 00:35:01 -05:00
class public Program
2013-04-10 21:29:02 -07:00
method public static void main()
2015-11-18 06:14:39 +00:00
Console::WriteLine("Hello world!")
2013-04-10 21:29:02 -07:00
end method
end class