Hello world/Newline omission: Difference between revisions

Content deleted Content added
Bartj (talk | contribs)
Added Bracmat
Added Delphi example
Line 70: Line 70:
<lang euphoria>-- In Euphoria puts() does not insert a newline character after outputting a string
<lang euphoria>-- In Euphoria puts() does not insert a newline character after outputting a string
puts(1,"Goodbye, world!")</lang>
puts(1,"Goodbye, world!")</lang>

=={{header|Delphi}}==
<lang Delphi>program Project1;

{$APPTYPE CONSOLE}

begin
Write(ErrOutput, 'Goodbye, World!');
end.</lang>


=={{header|Factor}}==
=={{header|Factor}}==