commit f827b306c43dce36cfd1fed852ed6934b6cc7469 Author: Josh Holtrop Date: Sat Feb 2 00:12:43 2013 -0500 create initial files diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c02cd0c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +sdl_opengl_bare diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c344e2d --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ + +TARGET := sdl_opengl_bare + +all: $(TARGET) + +$(TARGET): $(TARGET).d + gdc -o $@ $^ diff --git a/sdl_opengl_bare.d b/sdl_opengl_bare.d new file mode 100644 index 0000000..862b7cf --- /dev/null +++ b/sdl_opengl_bare.d @@ -0,0 +1,7 @@ +import std.stdio; + +int main(char[][] args) +{ + writefln("Hi!"); + return 0; +}