Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
freebsd
Edit Copy
Star
GitHub Repository:
freebsd/freebsd-src
Path:
blob/main/contrib/libcbor/misc/repeat.rb
3
9
4
8
3
views
1
#!/usr/bin/env ruby
2
3
(
Integer
(
$*
[
0
]
)
..
Integer
(
$*
[
1
]
)
)
.
each
{
|
i
|
puts
"case 0x%02X:"
%
i
}
4
5