view lphobos/hello.d @ 1572:30bdcfb8299e

Avoid some unecessary heap allocations by using llvm's StringRef class.
author Benjamin Kramer <benny.kra@gmail.com>
date Fri, 14 Aug 2009 01:43:30 +0200
parents 373489eeaf90
children
line wrap: on
line source

module hello;

import std.stdio;

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