Sha256: 8ba0cb83c9e9d14d89d37766817f26fe77e6eb2f113e6a294a35c09f3d3f7c9c

Contents?: true

Size: 618 Bytes

Versions: 3

Compression:

Stored size: 618 Bytes

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

require "bundler/setup"
require "ykutils"

# You can add fixtures and/or initialization code here to make experimenting
# with your gem easier. You can also use a different console, if you like.

# (If you use this, don't forget to add pry to your Gemfile!)
# require "pry"
# Pry.start

#require "irb"
#IRB.start(__FILE__)
#puts( make_grid(1 , 2) )

#puts Ykutils::Erubyx::make_grid_list()
min_row = ARGV[0].to_i
max_row = ARGV[1].to_i
min_colum = ARGV[2].to_i
max_colum = ARGV[3].to_i
puts Ykutils::Gridlist::make_grid_list_x(min_row, max_row, min_colum, max_colum)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ykutils-0.1.4 bin/makegrid
ykutils-0.1.3 bin/makegrid
ykutils-0.1.1 bin/makegrid