1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

FreeBSD support

This commit is contained in:
Alexander Medvednikov
2019-07-15 17:24:40 +02:00
parent 92fb9c8b94
commit 7c6f59afa6
3 changed files with 11 additions and 2 deletions

View File

@@ -455,6 +455,9 @@ pub fn user_os() string {
$if windows {
return 'windows'
}
$if freebsd {
return 'freebsd'
}
return 'unknown'
}