home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
gnu
/
djgpp
/
samples
/
hello
/
tryit.bat
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1993-11-13
|
206 b
|
18 lines
@echo off
echo.
echo Running go32 to get system information
echo.
go32
echo.
echo Compiling a program
echo.
gcc -v hello.c -o hello
echo.
echo Running the program
echo.
go32 hello
echo.