import Foundation struct HTMLElementsGenerator { init() { } func make(title: String, suffix: String) -> String { "\(title)\(suffix)" } }