hello.cpp

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C++ 代码 · 共 28 行

CPP
28
字号
/*
 *  This file was generated by the SOM Compiler and Emitter Framework.
 *  Generated using template emitter:
 *      SOM Emitter emitxtm: 2.23.1.9
 */

#ifndef SOM_Module_hello_Source
#define SOM_Module_hello_Source
#endif
#define Hello_Class_Source

#include "hello.xih"

#include <stdio.h>

/*
 * This method outputs the string "Hello, World!".
 */

SOM_Scope void  SOMLINK sayHello(Hello *somSelf,  Environment *ev)
{
    /* HelloData *somThis = HelloGetData(somSelf); */
    HelloMethodDebug("Hello","sayHello");

    printf( "Hello, World from SOM (C++ version)\n" );
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?