Salsa-0.1.0.1: Samples/Hello/Hello.hs
module Main where
--
-- Displays 'Hello .NET World!' using .NET's Console.WriteLine() method.
--
import Foreign.Salsa
import Bindings
main :: IO ()
main = withCLR $ do
_Console # _writeLine ("Hello .NET World!")
-- vim:set sw=4 ts=4 expandtab: