Created
October 27, 2021 22:45
-
-
Save swdevbali/c6d65fc1c7bf07fd6a3e5a08aeeddcd0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| /* Pomodoro Tracker Application | |
| * Author: Eko S. W | |
| * Start : 25 Oct 2021 | |
| * "An application that will try to manage your work by using Pomodoro technique: ((20mins deep work + 10mins rest) x 2 + 20mins rest) x 8 | |
| */ | |
| import UIKit | |
| print("Application initialization..") | |
| let version: String = "0.0.1" | |
| // instance of Pomodoro tasks | |
| var iteration: Int = 1 | |
| var username = "Eko" | |
| var project = "Mastering Swift" | |
| var task = "Swift Fundamental" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment