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
|
||||
docs/
|
||||
|
||||
# INTELLIJ
|
||||
*.iml
|
||||
.idea/*
|
||||
|
||||
# Code coverage
|
||||
*.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;
|
||||
|
||||
void main(string[] args) {
|
||||
writeln("Hello World!");
|
||||
writeln("Press enter...");
|
||||
readln();
|
||||
void main() {
|
||||
writeln("woomy irl");
|
||||
}
|
||||
|
||||
|
|
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