view compile/typedef_05.d @ 1:3414705c41ac

removed CVS header
author thomask
date Sun, 26 Sep 2004 12:06:09 +0000
parents 3269e4627918
children 55a2c755d699
line wrap: on
line source

// @author@	Steward Gordon <smjg_1988@yahool.com>
// @date@	2004-09-06

typedef char[] String;

char[] test(String s){
	return s[4..6];
}