view minato2014/magic.rb @ 3241:b56bf1659fd5

Move some unused directories
author HIROSE Yuuji <yuuji@koeki-u.ac.jp>
date Thu, 14 Jul 2016 22:23:45 +0900
parents d0116df87007
children
line wrap: on
line source

#!/usr/bin/env ruby
# -*- coding: utf-8 -*-

def magic()
  srand(123456789)
  hoge = Array.new
  while hoge.length < 100
    hoge << rand(1000000)
    hoge.uniq!
  end
  return hoge
end

yatex.org