view trunk/src/common.d @ 780:edd217e14736

Using CompilationContext in command 'igraph'.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Wed, 20 Feb 2008 23:13:56 +0100
parents 33b566df6af4
children 3b34f6a95a27
line wrap: on
line source

/++
  Author: Aziz Köksal
  License: GPL3
+/
module common;

public import tango.io.Stdout;
public import tango.text.convert.Layout;

alias char[] string;
alias wchar[] wstring;
alias dchar[] dstring;

static Layout!(char) Format;
static this()
{
  Format = new typeof(Format);
}