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

doc: $else (#6174)

This commit is contained in:
Lukas Neubert
2020-08-20 08:33:08 +02:00
committed by GitHub
parent b1c042b3ea
commit d8d707b4fe

View File

@ -2228,6 +2228,9 @@ $if linux {
$if macos {
println('macOS')
}
$else {
println('different OS')
}
$if debug {
println('debugging')