OSDN Git Service

first commit
[soopy/alpha1.git] / src / Nil.cpp
1 /*
2  * Programming Language SOOPY
3  *   (Simple Object Oriented Programming sYstem)
4  * 
5  * Copyright (C) 2002,2003 SUZUKI Jun
6  * 
7  * URL: http://sourceforge.jp/projects/soopy/
8  * License: GPL(GNU General Public License)
9  * 
10  * 
11  * $Id: Nil.cpp,v 1.10 2004/03/17 06:09:28 randy Exp $
12  */
13
14 #include "soopy.h"
15
16 void initNil()
17 {
18     NilMsgHandler.append(SymIsList, PrimTrue);
19     NilMsgHandler.append(SymIsNil, PrimTrue);
20     NilMsgHandler.append(SymSplit, PrimNil2);
21     NilMsgHandler.append(SymEach, PrimNil2);
22     NilMsgHandler.append(SymSort, PrimNil);
23     NilMsgHandler.append(SymMap, PrimNil2);
24     NilMsgHandler.append(SymFilter, PrimNil2);
25     NilMsgHandler.append(SymLength, PrimZero);
26 }
27