代码搜索:Hello
找到约 10,000 项符合「Hello」的源代码
代码结果 10,000
www.eeworm.com/read/276828/10706179
asm hello.asm
; example of simplified Win32 programming using complex macro features
include 'win32ax.inc'
.code
start:
invoke MessageBox,HWND_DESKTOP,"Hi! I'm the example program!","Win32 Assembly",
www.eeworm.com/read/276828/10706181
exe hello.exe
www.eeworm.com/read/158966/10706351
cpp hello.cpp
//: C02:Hello.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Saying Hello with C++
#include
www.eeworm.com/read/276706/10713994
cpp hello.cpp
#include
#include "gamebrd.h"
int main(int argc,char **argv)
{
// QApplication::setColorSpec(QApplication::CustomColor);
QApplication a(argc,argv);
GameBoard gb;
a.setMainWidget
www.eeworm.com/read/276703/10714270
c hello.c
/* HELLO.C -- Hello, world */
#include
main()
{
printf("Hello, world\n");
}
www.eeworm.com/read/421644/10718228
adb hello.adb
with Text_IO; use Text_IO;
procedure outside is
procedure inside is
begin
Text_IO.Put_Line ("Inside the procedure inside");
end inside;
begin
Put_Line ("Today is
www.eeworm.com/read/421366/10739616