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
/*CODED WITH IRON HANDS <BIGFIRE> | |
* Copyright (c) 4th March 2013 11:57 AM | |
* OPEN SOUCRED IDEA BORROWED FROM Raindolf Owusu | |
* Runtime .0051 sec | |
* Since i hate commenting my Codes(Real programmers dnt comment >"<) | |
* Do the maths | |
*/ | |
import javax.swing.*; | |
public class cedis2dollar { |
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
precedencegroup HierarchyPrecedence { | |
lowerThan: AssignmentPrecedence | |
associativity: left | |
} | |
infix operator |--: HierarchyPrecedence | |
public protocol UIViewHierarchyProvider { | |
associatedtype View: UIView | |
var view: View { get } |