mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-02-04 21:33:56 +00:00
ヘッター部の README のアドレスが違っていたので修正
This commit is contained in:
parent
1ea9d30e2a
commit
9f061e8882
5 changed files with 349 additions and 350 deletions
|
@ -6,7 +6,7 @@
|
||||||
// osyo-manga : http://d.hatena.ne.jp/osyo-manga/
|
// osyo-manga : http://d.hatena.ne.jp/osyo-manga/
|
||||||
//
|
//
|
||||||
// Readme:
|
// Readme:
|
||||||
// https://github.com/osyo-manga/cpp-half/blob/master/README
|
// https://github.com/bolero-MURAKAMI/Sprout/blob/master/README
|
||||||
//
|
//
|
||||||
// License:
|
// License:
|
||||||
// Boost Software License - Version 1.0
|
// Boost Software License - Version 1.0
|
||||||
|
@ -26,9 +26,9 @@ struct fizzbuzz{
|
||||||
constexpr result_type
|
constexpr result_type
|
||||||
operator ()(int n) const{
|
operator ()(int n) const{
|
||||||
return n % 15 == 0 ? sprout::to_string("FizzBuzz")
|
return n % 15 == 0 ? sprout::to_string("FizzBuzz")
|
||||||
: n % 3 == 0 ? sprout::to_string("Fizz")
|
: n % 3 == 0 ? sprout::to_string("Fizz")
|
||||||
: n % 5 == 0 ? sprout::to_string("Buzz")
|
: n % 5 == 0 ? sprout::to_string("Buzz")
|
||||||
: sprout::to_string(n);
|
: sprout::to_string(n);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
// osyo-manga : http://d.hatena.ne.jp/osyo-manga/
|
// osyo-manga : http://d.hatena.ne.jp/osyo-manga/
|
||||||
//
|
//
|
||||||
// Readme:
|
// Readme:
|
||||||
// https://github.com/osyo-manga/cpp-half/blob/master/README
|
// https://github.com/bolero-MURAKAMI/Sprout/blob/master/README
|
||||||
//
|
//
|
||||||
// License:
|
// License:
|
||||||
// Boost Software License - Version 1.0
|
// Boost Software License - Version 1.0
|
||||||
|
|
|
@ -82,6 +82,5 @@ main(){
|
||||||
assert(str == "mami");
|
assert(str == "mami");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
// osyo-manga : http://d.hatena.ne.jp/osyo-manga/
|
// osyo-manga : http://d.hatena.ne.jp/osyo-manga/
|
||||||
//
|
//
|
||||||
// Readme:
|
// Readme:
|
||||||
// https://github.com/osyo-manga/cpp-half/blob/master/README
|
// https://github.com/bolero-MURAKAMI/Sprout/blob/master/README
|
||||||
//
|
//
|
||||||
// License:
|
// License:
|
||||||
// Boost Software License - Version 1.0
|
// Boost Software License - Version 1.0
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
// osyo-manga : http://d.hatena.ne.jp/osyo-manga/
|
// osyo-manga : http://d.hatena.ne.jp/osyo-manga/
|
||||||
//
|
//
|
||||||
// Readme:
|
// Readme:
|
||||||
// https://github.com/osyo-manga/cpp-half/blob/master/README
|
// https://github.com/bolero-MURAKAMI/Sprout/blob/master/README
|
||||||
//
|
//
|
||||||
// License:
|
// License:
|
||||||
// Boost Software License - Version 1.0
|
// Boost Software License - Version 1.0
|
||||||
|
|
Loading…
Add table
Reference in a new issue