Innholdsfortegnelse

Hello, world

Python

  print "Hello, world."

C

  #include <stdio.h>
 
  int main(void)
  {
    puts("Hello, world.");
    return 0;
  }

C++

  #include <iostream>
 
  int main()
  {
    std::cout << "Hello, world.\n";
  }

Java

  public class HelloWorld {
    public static void main(String[] args) {
      System.out.println("Hello, world.");
    }
  }
 
hello-world.txt · Sist modifisert: 2007/08/09 16:17 av trond
 
Der annet ikke er særskilt beskrevet, er innholdet på denne wiki regulert av følgende lisens:GNU Free Documentation License 1.2
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki