Hello world/Newline omission: Difference between revisions

Content deleted Content added
Add Forth
m →‎{{header|Objeck}}: put at its right place in alphabetical order
Line 90: Line 90:


<lang haskell>main = putStr "Goodbye, world"</lang>
<lang haskell>main = putStr "Goodbye, world"</lang>

=={{header|Objeck}}==
<lang objeck>
bundle Default {
class SayHello {
function : Main(args : String[]) ~ Nil {
"Hello World!"->Print();
}
}
}
</lang>


=={{header|Icon}} and {{header|Unicon}}==
=={{header|Icon}} and {{header|Unicon}}==
Line 131: Line 120:
<lang ML/I>MCSKIP " WITH " NL
<lang ML/I>MCSKIP " WITH " NL
Goodbye, World!""</lang>
Goodbye, World!""</lang>

=={{header|Objeck}}==
<lang objeck>
bundle Default {
class SayHello {
function : Main(args : String[]) ~ Nil {
"Hello World!"->Print();
}
}
}
</lang>

=={{header|OCaml}}==
=={{header|OCaml}}==