From 3b95f9ec4eda84357753fbeb96d2de34cf42ec63 Mon Sep 17 00:00:00 2001 From: reemo Date: Fri, 22 Nov 2024 14:45:43 -0600 Subject: [PATCH] test 4 set up a new ide :mewow: --- .gitignore | 12 ++++++++++++ dub.json | 6 ------ dub.sdl | 4 ++++ source/app.d | 7 ++----- source/sock/irc.d | 1 + source/sock/soch.d | 1 + source/sock/wsock.d | 1 + 7 files changed, 21 insertions(+), 11 deletions(-) delete mode 100644 dub.json create mode 100644 dub.sdl create mode 100644 source/sock/irc.d create mode 100644 source/sock/soch.d create mode 100644 source/sock/wsock.d diff --git a/.gitignore b/.gitignore index 2758450..5e38f90 100644 --- a/.gitignore +++ b/.gitignore @@ -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-* \ No newline at end of file diff --git a/dub.json b/dub.json deleted file mode 100644 index 90d3d55..0000000 --- a/dub.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "iirc", - "targetName": "iirc", - "targetType": "executable", - "targetPath": "bin" -} \ No newline at end of file diff --git a/dub.sdl b/dub.sdl new file mode 100644 index 0000000..0426007 --- /dev/null +++ b/dub.sdl @@ -0,0 +1,4 @@ +name "iirc" +description "irc gateway for flashii chat" +authors "reemo" +license "proprietary" diff --git a/source/app.d b/source/app.d index 5d3cd9e..bbd7e81 100644 --- a/source/app.d +++ b/source/app.d @@ -1,8 +1,5 @@ import std.stdio; -void main(string[] args) { - writeln("Hello World!"); - writeln("Press enter..."); - readln(); +void main() { + writeln("woomy irl"); } - diff --git a/source/sock/irc.d b/source/sock/irc.d new file mode 100644 index 0000000..90069ff --- /dev/null +++ b/source/sock/irc.d @@ -0,0 +1 @@ +module sock.irc; diff --git a/source/sock/soch.d b/source/sock/soch.d new file mode 100644 index 0000000..aa28753 --- /dev/null +++ b/source/sock/soch.d @@ -0,0 +1 @@ +module sock.soch; diff --git a/source/sock/wsock.d b/source/sock/wsock.d new file mode 100644 index 0000000..500ae1b --- /dev/null +++ b/source/sock/wsock.d @@ -0,0 +1 @@ +module sock.wsock;