Skip to content

Commit

Permalink
fix(swiftday02): remove trailing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
christianeiselt committed Jul 8, 2021
1 parent a5304b0 commit a99a97a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Swift/2019/Day02/Day02.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ func calc(inputStr: String) {
}

import Foundation
let str = try! String(contentsOfFile: "2019/Day02/input.txt");
let str = try! String(contentsOfFile: "2019/Day02/input.txt")
// let str = try! String(contentsOfFile: CommandLine.arguments[1])
// calc(inputStr: str)
println(str)

0 comments on commit a99a97a

Please sign in to comment.