mirror of
https://github.com/erg-lang/erg.git
synced 2025-12-23 05:36:48 +00:00
5 lines
150 B
Python
5 lines
150 B
Python
{SemVer;} = import "semver"
|
|
|
|
.func vers: List(SemVer), version: SemVer =
|
|
if all(map((v) -> v.compatible_with(version), vers)):
|
|
do: todo()
|