- This is hardworking and honest Mobile developer who has experience of many years.
- I am here to provide cutting edge solutions that meet the needs of my customers.
- I am sensitive to new technological trends and take pride in contributing to various open projects based on my experience and skills.
- Unfortunately, many of what I do is not sourced, but feel free to take a look at my public repository here.
// Rogina's motto
struct MarkZuckerberg {
/// Return Mark Zuckerberg quote
func said() -> String {
return "You are better off trying something and having it not work and learning from that than not doing anything at all"
}
}
@main
struct Main {
static func main() {
let markZuckerberg = MarkZuckerberg()
print("mark zuckerberg - \(markZuckerberg.said())")
}
}
