-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔧 fix(project.pbxproj): add Mood.swift to project file
🔧 fix(project.pbxproj): add Mood.swift to project file 🔧 fix(project.pbxproj): add Mood.swift to project file 🔧 fix(project.pbxproj): add Mood.swift to project file 🔧 fix(project.pbxproj): add Mood.swift to project file 🔧 fix(project.pbxproj): add Mood.swift to project file 🔧 fix(project.pbxproj): add Mood.swift to project file 🔧 fix(project.pbxproj): add Mood.swift to project file 🔧 fix(project.pbxproj): add Mood.swift to project file 🔧 fix(project.pbxproj): add Mood.swift to project file 🔧 fix(project.pbxproj): add Mood.swift to project file 🔧 fix(project.pbxproj): add Mood.swift to project file 🔧 fix 🐛 fix(DynamicTableVerbs.swift): fix indentation and spacing issues ✨ feat(DynamicTableVerbs.swift): refactor code to separate headers and rows for different tenses and reflexive/non-reflexive verbs
- Loading branch information
Showing
6 changed files
with
131 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// | ||
// Mood.swift | ||
// OldNorseDictionary | ||
// | ||
// Created by Andrey Skurlatov on 20.1.24.. | ||
// | ||
|
||
import Foundation | ||
|
||
enum Mood: String, CaseIterable, Codable { | ||
case indicative | ||
case subjunctive | ||
|
||
|
||
func Title(reflexive: Bool) -> String { | ||
var title = self.rawValue | ||
|
||
return title | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.