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
#!/usr/bin/swift | |
import Foundation | |
struct Project { | |
let name: String | |
let path: URL | |
let url: URL | |
let version: String | |
let dependencies: [Project] |
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
{ | |
"people": [ | |
{ | |
"name": "Wes", | |
"language": "dart" | |
}, | |
{ | |
"name": "Tania", | |
"language": "kotlin" | |
}, |
OlderNewer