YouPlot/lib/youplot.rb
2021-01-20 00:07:23 +09:00

16 lines
267 B
Ruby

# frozen_string_literal: true
require 'unicode_plot'
require 'youplot/version'
require 'youplot/dsv'
require 'youplot/command'
module YouPlot
class << self
attr_accessor :run_as_executable
def run_as_executable?
@run_as_executable
end
end
end