-
-
Save kemitchell/f869accb9a4453ba52946fdeaf1200ff to your computer and use it in GitHub Desktop.
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
function condition_three (l0r_code, program) { | |
if ( | |
// "cease using the L0-R code": | |
using(l0r_code) && | |
// "cease executing or developing it": | |
(executing(program) || developing(program)) && | |
(!published(program) || !osi_licensed(program)) | |
) { | |
return " | |
must be limited to a period | |
of ${GRACE_PERIOD} consecutive calendar days | |
" | |
} else { | |
return " | |
[U]se in source and binary forms, | |
with or without modification, | |
are permitted | |
" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment