“Hallo Welt” Code-Antworten

Hallo Welt

BEGIN DISPLAY("HELLO WORLD!") END.
PrototypeCodec

Hallo Welt

begin
  printf(($gl$,"Hello, world!"))
end
PrototypeCodec

Hallo Welt

echo "Hello, World!"
PrototypeCodec

Hallo Welt

say "Hello, world!"

// with alert window
display alert "Hello, world!"
PrototypeCodec

Hallo Welt

@echo off
echo Hello, World!
PrototypeCodec

Hallo Welt

." Hello, World!" CR
PrototypeCodec

Hallo Welt

10 PRINT "Hello, World!"
PrototypeCodec

Hallo Welt

with Ada.Text_IO;
use Ada.Text_IO;
procedure Hello is
begin
   Put_Line ("Hello, world!");
end Hello;
PrototypeCodec

Hallo Welt

IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO-WORLD.
* simple hello world program
PROCEDURE DIVISION.
    DISPLAY 'Hello, World!'.
    STOP RUN.
PrototypeCodec

Hallo Welt

#include <iostream>

int main() {
  std::cout << "Hello, World!\n";
}
PrototypeCodec

Ähnliche Antworten wie “Hallo Welt”

Fragen ähnlich wie “Hallo Welt”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen