Skip to content

Instantly share code, notes, and snippets.

@kemitchell
Created September 26, 2017 17:02
Show Gist options
  • Save kemitchell/f869accb9a4453ba52946fdeaf1200ff to your computer and use it in GitHub Desktop.
Save kemitchell/f869accb9a4453ba52946fdeaf1200ff to your computer and use it in GitHub Desktop.
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