comparison src/common.d @ 806:bcb74c9b895c

Moved out files in the trunk folder to the root.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sun, 09 Mar 2008 00:12:19 +0100
parents trunk/src/common.d@3b34f6a95a27
children
comparison
equal deleted inserted replaced
805:a3fab8b74a7d 806:bcb74c9b895c
1 /++
2 Author: Aziz Köksal
3 License: GPL3
4 +/
5 module common;
6
7 public import tango.io.Stdout;
8 public import tango.text.convert.Layout;
9
10 /// String aliases.
11 alias char[] string;
12 alias wchar[] wstring; /// ditto
13 alias dchar[] dstring; /// ditto
14
15 /// Global formatter instance.
16 static Layout!(char) Format;
17 static this()
18 {
19 Format = new typeof(Format);
20 }