summary refs log tree commit diff
path: root/ripple/data
diff options
context:
space:
mode:
authoredef <edef@unfathomable.blue>2021-12-22 23:52:29 +0000
committeredef <edef@unfathomable.blue>2021-12-22 23:53:19 +0000
commit534ea2ff306b43992dc51506fdbf10bb58d0c784 (patch)
tree54857e6e16fc6b98082d82a884191af0a747c740 /ripple/data
parent1c9b8ade5f50b425ac46a2b06ef6774987ab58f2 (diff)
ripple/data: add hello.c
Bog standard C hello world. The license info, insofar relevant,
is kept separately because it's an unnecessary contaminant.

Change-Id: Icf48e11fa44618a7f265f8b083e8a02dc6387711
Diffstat (limited to 'ripple/data')
-rw-r--r--ripple/data/hello.c5
-rw-r--r--ripple/data/hello.c.license3
2 files changed, 8 insertions, 0 deletions
diff --git a/ripple/data/hello.c b/ripple/data/hello.c
new file mode 100644
index 0000000..a262b3f
--- /dev/null
+++ b/ripple/data/hello.c
@@ -0,0 +1,5 @@
+#include <stdio.h>
+
+int main() {
+    printf("hello, world!\n");
+}
diff --git a/ripple/data/hello.c.license b/ripple/data/hello.c.license
new file mode 100644
index 0000000..26667bf
--- /dev/null
+++ b/ripple/data/hello.c.license
@@ -0,0 +1,3 @@
+SPDX-FileCopyrightText: V <v@unfathomable.blue>
+SPDX-FileCopyrightText: edef <edef@unfathomable.blue>
+SPDX-License-Identifier: CC0-1.0