about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/blogthing/blogthing.lil21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/blogthing/blogthing.lil b/src/blogthing/blogthing.lil
new file mode 100644
index 0000000..5e4523d
--- /dev/null
+++ b/src/blogthing/blogthing.lil
@@ -0,0 +1,21 @@
+if args[2] do
+
+	if args[2] ~ "note" do
+		print["note"]
+	end
+
+	if args[2] ~ "image" do
+		print["image"]
+	end
+
+	if args[2] ~ "reply" do
+		print["reply"]
+	end
+
+	if args[2] ~ "like" do
+		print["like"]
+	end
+
+else 
+	print["no args"]
+end 
\ No newline at end of file