view lphobos/hello.d @ 1212:df2227fdc860

For the outermost function needing a context frame, use the address of that frame as the nest argument instead of the address of a single-element list containing only that frame address. This saves some stack space and reduces memory accesses.
author Frits van Bommel <fvbommel wxs.nl>
date Mon, 13 Apr 2009 04:09:08 +0200
parents 373489eeaf90
children
line wrap: on
line source

module hello;

import std.stdio;

void main() { writefln("Hello World"); }