~aquaratixc/j1-cpu

65dd9dbd8d405caf0c74bac613b2434bb19ad9ec — Bagomot 6 years ago c72e229
Dub init
3 files changed, 17 insertions(+), 0 deletions(-)

A .gitignore
A dub.sdl
A source/app.d
A .gitignore => .gitignore +6 -0
@@ 0,0 1,6 @@
.dub
docs.json
__dummy.html
*.o
*.obj
__test__*__

A dub.sdl => dub.sdl +5 -0
@@ 0,0 1,5 @@
name "j1_cpu"
description "Implementation of the J1 Forth CPU in D programming language"
authors "aquaratixc"
copyright "LHS"
license "MIT"

A source/app.d => source/app.d +6 -0
@@ 0,0 1,6 @@
import std.stdio;

void main()
{
	writeln("Edit source/app.d to start your project.");
}