diff --git a/misc/Hi.swift b/misc/Hi.swift
new file mode 100644
index 00000000..44159b39
--- /dev/null
+++ b/misc/Hi.swift
@@ -0,0 +1 @@
+print("Hello world")
diff --git a/misc/hi.m b/misc/hi.m
new file mode 100644
index 00000000..8fcba7c3
--- /dev/null
+++ b/misc/hi.m
@@ -0,0 +1,7 @@
+#import <Foundation/Foundation.h>
+
+@implementation Hello
+NSString *hi() {
+  return @"Hello world"
+}
+@end