struct Project {
var info = [String:Any]()
init(_ name: String) {
info["name"] = name
}
}
var thisProject = Project("placeholder")
thisProject.info["about"] = "A placeholder until I've added them"
thisProject.info["url"] = "https://github.com/juice805"
thisProject.info["tags"] = ["testing", "construction", "goback", "don't look"]