test 4
set up a new ide :mewow:
This commit is contained in:
parent
2813508fa0
commit
3b95f9ec4e
7 changed files with 21 additions and 11 deletions
12
.gitignore
vendored
12
.gitignore
vendored
|
@ -21,6 +21,18 @@ docs.json
|
||||||
__dummy.html
|
__dummy.html
|
||||||
docs/
|
docs/
|
||||||
|
|
||||||
|
# INTELLIJ
|
||||||
|
*.iml
|
||||||
|
.idea/*
|
||||||
|
|
||||||
# Code coverage
|
# Code coverage
|
||||||
*.lst
|
*.lst
|
||||||
|
|
||||||
|
# IIRC
|
||||||
|
/iirc
|
||||||
|
iirc.so
|
||||||
|
iirc.dylib
|
||||||
|
iirc.dll
|
||||||
|
iirc.a
|
||||||
|
iirc.lib
|
||||||
|
iirc-test-*
|
6
dub.json
6
dub.json
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"name": "iirc",
|
|
||||||
"targetName": "iirc",
|
|
||||||
"targetType": "executable",
|
|
||||||
"targetPath": "bin"
|
|
||||||
}
|
|
4
dub.sdl
Normal file
4
dub.sdl
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
name "iirc"
|
||||||
|
description "irc gateway for flashii chat"
|
||||||
|
authors "reemo"
|
||||||
|
license "proprietary"
|
|
@ -1,8 +1,5 @@
|
||||||
import std.stdio;
|
import std.stdio;
|
||||||
|
|
||||||
void main(string[] args) {
|
void main() {
|
||||||
writeln("Hello World!");
|
writeln("woomy irl");
|
||||||
writeln("Press enter...");
|
|
||||||
readln();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
1
source/sock/irc.d
Normal file
1
source/sock/irc.d
Normal file
|
@ -0,0 +1 @@
|
||||||
|
module sock.irc;
|
1
source/sock/soch.d
Normal file
1
source/sock/soch.d
Normal file
|
@ -0,0 +1 @@
|
||||||
|
module sock.soch;
|
1
source/sock/wsock.d
Normal file
1
source/sock/wsock.d
Normal file
|
@ -0,0 +1 @@
|
||||||
|
module sock.wsock;
|
Loading…
Reference in a new issue