All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codecommit.gll.Global.scala Maven / Gradle / Ivy

The newest version!
package com.codecommit.gll

private[gll] object Global {
  val debug = false

  def trace(msg: =>String) {
    if (debug) println(msg)
  }

  def tracef(msg: =>String, args: Any*) {
    if (debug) printf(msg, args:_*)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy