aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaulo Custodio <pauloscustodio@gmail.com>2021-12-10 13:59:29 +0000
committerPaulo Custodio <pauloscustodio@gmail.com>2021-12-10 13:59:29 +0000
commit5e76417dd0655c976216a7ddf91d35929e56c594 (patch)
tree981d75c336c7a0d38bf74b573fbfc2fe53c3bd94
parent0fb42b42598f2ded3a5fa4bd02471495689e716e (diff)
downloadperlweeklychallenge-club-5e76417dd0655c976216a7ddf91d35929e56c594.tar.gz
perlweeklychallenge-club-5e76417dd0655c976216a7ddf91d35929e56c594.tar.bz2
perlweeklychallenge-club-5e76417dd0655c976216a7ddf91d35929e56c594.zip
Add smallest-size scripts in several languages for challenge 24
-rw-r--r--challenge-024/paulo-custodio/ada/ch_1.adb4
-rw-r--r--challenge-024/paulo-custodio/awk/ch-1.awk0
-rw-r--r--challenge-024/paulo-custodio/basic/ch-1.bas0
-rw-r--r--challenge-024/paulo-custodio/bc/ch-1.bc0
-rw-r--r--challenge-024/paulo-custodio/brainfuck/ch-1.bf0
-rw-r--r--challenge-024/paulo-custodio/c/ch-1.c1
-rw-r--r--challenge-024/paulo-custodio/cpp/ch-1.cpp1
-rw-r--r--challenge-024/paulo-custodio/d/ch_1.d1
-rw-r--r--challenge-024/paulo-custodio/forth/ch-1.fs1
-rw-r--r--challenge-024/paulo-custodio/fortran/ch-1.f902
-rw-r--r--challenge-024/paulo-custodio/lua/ch-1.lua0
-rw-r--r--challenge-024/paulo-custodio/pascal/ch-1.pas3
12 files changed, 13 insertions, 0 deletions
diff --git a/challenge-024/paulo-custodio/ada/ch_1.adb b/challenge-024/paulo-custodio/ada/ch_1.adb
new file mode 100644
index 0000000000..866204f052
--- /dev/null
+++ b/challenge-024/paulo-custodio/ada/ch_1.adb
@@ -0,0 +1,4 @@
+procedure ch_1 is
+begin
+ null;
+end ch_1;
diff --git a/challenge-024/paulo-custodio/awk/ch-1.awk b/challenge-024/paulo-custodio/awk/ch-1.awk
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/challenge-024/paulo-custodio/awk/ch-1.awk
diff --git a/challenge-024/paulo-custodio/basic/ch-1.bas b/challenge-024/paulo-custodio/basic/ch-1.bas
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/challenge-024/paulo-custodio/basic/ch-1.bas
diff --git a/challenge-024/paulo-custodio/bc/ch-1.bc b/challenge-024/paulo-custodio/bc/ch-1.bc
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/challenge-024/paulo-custodio/bc/ch-1.bc
diff --git a/challenge-024/paulo-custodio/brainfuck/ch-1.bf b/challenge-024/paulo-custodio/brainfuck/ch-1.bf
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/challenge-024/paulo-custodio/brainfuck/ch-1.bf
diff --git a/challenge-024/paulo-custodio/c/ch-1.c b/challenge-024/paulo-custodio/c/ch-1.c
new file mode 100644
index 0000000000..237c8ce181
--- /dev/null
+++ b/challenge-024/paulo-custodio/c/ch-1.c
@@ -0,0 +1 @@
+int main() {}
diff --git a/challenge-024/paulo-custodio/cpp/ch-1.cpp b/challenge-024/paulo-custodio/cpp/ch-1.cpp
new file mode 100644
index 0000000000..237c8ce181
--- /dev/null
+++ b/challenge-024/paulo-custodio/cpp/ch-1.cpp
@@ -0,0 +1 @@
+int main() {}
diff --git a/challenge-024/paulo-custodio/d/ch_1.d b/challenge-024/paulo-custodio/d/ch_1.d
new file mode 100644
index 0000000000..ab73b3a234
--- /dev/null
+++ b/challenge-024/paulo-custodio/d/ch_1.d
@@ -0,0 +1 @@
+void main() {}
diff --git a/challenge-024/paulo-custodio/forth/ch-1.fs b/challenge-024/paulo-custodio/forth/ch-1.fs
new file mode 100644
index 0000000000..df5437a322
--- /dev/null
+++ b/challenge-024/paulo-custodio/forth/ch-1.fs
@@ -0,0 +1 @@
+BYE
diff --git a/challenge-024/paulo-custodio/fortran/ch-1.f90 b/challenge-024/paulo-custodio/fortran/ch-1.f90
new file mode 100644
index 0000000000..fd91e89896
--- /dev/null
+++ b/challenge-024/paulo-custodio/fortran/ch-1.f90
@@ -0,0 +1,2 @@
+program ch1
+end program ch1
diff --git a/challenge-024/paulo-custodio/lua/ch-1.lua b/challenge-024/paulo-custodio/lua/ch-1.lua
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/challenge-024/paulo-custodio/lua/ch-1.lua
diff --git a/challenge-024/paulo-custodio/pascal/ch-1.pas b/challenge-024/paulo-custodio/pascal/ch-1.pas
new file mode 100644
index 0000000000..4de1b51a2d
--- /dev/null
+++ b/challenge-024/paulo-custodio/pascal/ch-1.pas
@@ -0,0 +1,3 @@
+program ch1(input, output);
+begin
+end.