main.cpp
来自「C-smile OOL is a scripting language with」· C++ 代码 · 共 43 行
CPP
43 行
/*
*
* main.cpp
*
* Copyright (c) 2001, 2002
* Andrew Fedoniouk - andrew@terra-informatica.org
* Portions: Serge Kuznetsov - kuznetsov@deeptown.org
*
* See the file "COPYING" for information on usage
* and redistribution of this file
*
*/
// main.cpp - TIL main routine
#include <stdio.h>
#include <stdarg.h>
#include "c-smile.h"
//|
//| Revision history:
//|
//| 17.04.2001 - initial implementation completed
//|
//|
using namespace c_smile;
bool initialize_ext ( )
{
return true;
}
//|
//| main - the main routine
//|
int main ( int argc, char *argv [ ] )
{
return cs_main ( argc, argv );
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?