Skip to content
This repository has been archived by the owner on Dec 13, 2018. It is now read-only.

Commit

Permalink
Added basic test file for multiple files.
Browse files Browse the repository at this point in the history
  • Loading branch information
owensd committed Jul 5, 2015
1 parent 33dcc13 commit b8bd8b5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions samples/multi/bar.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
func bar() -> Int {
return 1
}
3 changes: 3 additions & 0 deletions samples/multi/foo.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
func foo() -> Int {
return 2
}
2 changes: 2 additions & 0 deletions samples/multi/main.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
print("foo: \(foo())")
print("bar: \(bar())")

0 comments on commit b8bd8b5

Please sign in to comment.