add Rsconscript and initial source file
This commit is contained in:
parent
4b7ead8706
commit
776bed33c7
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
/.rscons*
|
/.rscons*
|
||||||
/build/
|
/build/
|
||||||
|
/peg-puzzle
|
||||||
|
9
Rsconscript
Normal file
9
Rsconscript
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
configure do
|
||||||
|
check_d_compiler
|
||||||
|
end
|
||||||
|
|
||||||
|
build do
|
||||||
|
Environment.new do |env|
|
||||||
|
env.Program("peg-puzzle", glob("src/**/*.d"))
|
||||||
|
end
|
||||||
|
end
|
7
src/main.d
Normal file
7
src/main.d
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import std.stdio;
|
||||||
|
|
||||||
|
int main(string[] args)
|
||||||
|
{
|
||||||
|
writeln("Peg Puzzle");
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user