set up a new ide :mewow:
This commit is contained in:
reemo 2024-11-22 14:45:43 -06:00
parent 2813508fa0
commit 3b95f9ec4e
No known key found for this signature in database
7 changed files with 21 additions and 11 deletions

12
.gitignore vendored
View file

@ -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-*

View file

@ -1,6 +0,0 @@
{
"name": "iirc",
"targetName": "iirc",
"targetType": "executable",
"targetPath": "bin"
}

4
dub.sdl Normal file
View file

@ -0,0 +1,4 @@
name "iirc"
description "irc gateway for flashii chat"
authors "reemo"
license "proprietary"

View file

@ -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
View file

@ -0,0 +1 @@
module sock.irc;

1
source/sock/soch.d Normal file
View file

@ -0,0 +1 @@
module sock.soch;

1
source/sock/wsock.d Normal file
View file

@ -0,0 +1 @@
module sock.wsock;