git @ Cat's Eye Technologies Velo / master src / velo / debug.rb
master

Tree @master (Download .tar.gz)

debug.rb @masterraw · history · blame

# Copyright (c) 2012-2024, Chris Pressey, Cat's Eye Technologies.
# This file is distributed under a 2-clause BSD license.  See LICENSES/ dir.
# SPDX-License-Identifier: LicenseRef-BSD-2-Clause-X-Velo

$debug = false
$debug_scan = false

def debug s
  if $debug
    puts "--> #{s}"
  end
end