create initial files

This commit is contained in:
Josh Holtrop 2013-02-02 00:12:43 -05:00
commit f827b306c4
3 changed files with 15 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
sdl_opengl_bare

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
TARGET := sdl_opengl_bare
all: $(TARGET)
$(TARGET): $(TARGET).d
gdc -o $@ $^

7
sdl_opengl_bare.d Normal file
View File

@ -0,0 +1,7 @@
import std.stdio;
int main(char[][] args)
{
writefln("Hi!");
return 0;
}