1
0
mirror of https://github.com/dkhamsing/open-source-ios-apps.git synced 2025-02-20 22:00:44 +01:00

Merge pull request 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

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

7
misc/hi.m Normal file

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