Sha256: b061282f3e767bf70dd8ea70b1e6dde2be8a297d6709c8acab91834804a92866

Contents?: true

Size: 622 Bytes

Versions: 2

Compression:

Stored size: 622 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

2 entries across 2 versions & 1 rubygems

Version Path
ykutils-0.1.7 bin/makegrid
ykutils-0.1.6 bin/makegrid