Merge pull request #173 from dkhamsing/misc

Repo language
This commit is contained in:
dkhamsing 2015-12-21 08:55:37 -08:00
commit 4ff7370cc9
2 changed files with 8 additions and 0 deletions

1
misc/Hi.swift Normal file
View File

@ -0,0 +1 @@
print("Hello world")

7
misc/hi.m Normal file
View File

@ -0,0 +1,7 @@
#import <Foundation/Foundation.h>
@implementation Hello
NSString *hi() {
return @"Hello world"
}
@end