24 lines
413 B
Swift
24 lines
413 B
Swift
//
|
|
// Numbers.swift
|
|
// LiTranslate
|
|
//
|
|
// Created by Viktor Kalyniuk on 13.08.2022.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct Numbers {
|
|
static let zero: Int = 0
|
|
static let one: Int = 1
|
|
static let two: Int = 2
|
|
static let three: Int = 3
|
|
|
|
static let six: Int = 6
|
|
|
|
static let fourteen: Int = 14
|
|
|
|
static let twentyFive: Int = 25
|
|
static let thirty: Int = 30
|
|
|
|
static let ninety: Int = 90
|
|
}
|