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
enum CommonPrintingFormat: String { | |
case start = “! 0 200 200 150 1” | |
case end = “\nFORM\nPRINT “ | |
} |
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
enum SectionTitle: String { | |
case a = "a" | |
case b = "b" | |
case c = "c" | |
case d = "d" | |
init?(section: Int, hasB: Bool = false, hasD: Bool = false) { | |
if hasD { | |
switch section { | |
case 0: self = .a | |
case 1: self = .b |
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
lane :bluepill do | |
scan(scheme: “myApp”, build_for_testing: true) | |
sh “bash ./bluepill.sh“ | |
end |
NewerOlder