Scripts posted recently tagged to hello-world in Kelpi

1- 10 of 65.

Hello world in Perl

to hello-world perl by spiros

#!/usr/bin/perl 
use warnings ;
use strict ;
print 'Hello, World!' . "\n" ;

WSGI compatible Hello World

to python wsgi hello-world by anonymous

def app(environ, start_response):
    start_response('200 OK', [('Content-Type', 'text/plain')])
    return ['Hello World\n']

Hello World in C for Curses

to c curses hello-world by nando.quintana

/* Hello World in C for Curses */

#include <curses.h>
main()
{

Hello World in Ansi C

to c ansi-c hello-world by nando.quintana

/* http://www.roesler-ac.de/wolfram/hello.htm#C-ANSI */
/* Hello World in C, Ansi-style */

#include <stdio.h>
#include <stdlib.h>

Hello World in C++ for the Qt framework

to c++ qt hello-world by nando.quintana

// http://www.roesler-ac.de/wolfram/hello.htm#C++-Qt

// Hello World in C++ for the Qt framework

#include <qapplication.h>

Hello World in Microsoft Visual C++

to c++ visual hello-world by nando.quintana

// http://www.roesler-ac.de/wolfram/hello.htm#C++-MFC

// Hello World in C++ for Microsoft Foundation Classes
// (Microsoft Visual C++).

Hello World in C++-FLTK

to c++ fltk hello-world by nando.quintana

// http://www.roesler-ac.de/wolfram/hello.htm#C++-FLTK

// Hello World in C++-FLTK

#include <FL/Fl.H>

Hello World in ISO C++

to c++ iso hello-world by nando.quintana

// Hello World in ISO C++

#include <iostream>
#include <ostream>

Hello World in C++/CLI for .NET

to c++ cli .net hello-world by nando.quintana

// http://www.roesler-ac.de/wolfram/hello.htm#C++-CLI

// Hello World in C++/CLI for .NET

using namespace System;

Hello World in C++ for Symbian OS

to c++ hello-world symbian-os by nando.quintana

// http://www.roesler-ac.de/wolfram/hello.htm#C++-Epoc

// Hello World in C++, Epoc style (for Symbian OS)

#include <eikapp.h>
hits counter