unix-or-Windows   macro


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/runtime/llvmti.xtm

Implementation

(define-macro (unix-or-Windows unix-expr win-expr)
  (if (string=? (sys:platform) "Windows")
      win-expr unix-expr))


Back to Index