Skip to content

Instantly share code, notes, and snippets.

@koron
Created August 12, 2012 12:01
Show Gist options
  • Save koron/3331576 to your computer and use it in GitHub Desktop.
Save koron/3331576 to your computer and use it in GitHub Desktop.
受付番号ジェネレータ
#!/usr/bin/perl
my $v = int(rand() * (9999999 - 1000000)) + 1000000;
printf "%07d\n", $v;
@koron
Copy link
Author

koron commented Aug 12, 2012

最初が0ではない七桁の数字が欲しかったために書いた。

@koron
Copy link
Author

koron commented Aug 12, 2012

もちろんVimで!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment