diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-04-26 16:11:04 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-04-26 16:11:04 +0200 |
| commit | 575722f458b382e5fd847087c748439dfc88e802 (patch) | |
| tree | 681c98c60973d8171f4e8962825baedc50572045 /Sources/Patterns | |
Initial Commit
Diffstat (limited to 'Sources/Patterns')
| -rw-r--r-- | Sources/Patterns/Patterns.swift | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Sources/Patterns/Patterns.swift b/Sources/Patterns/Patterns.swift new file mode 100644 index 0000000..52a8771 --- /dev/null +++ b/Sources/Patterns/Patterns.swift @@ -0,0 +1,6 @@ +public struct Patterns { + public private(set) var text = "Hello, World!" + + public init() { + } +} |