Skip to content

Commit 7e152af

Browse files
committed
update
1 parent 3ea7845 commit 7e152af

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

docs/articles/it-compiles.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,3 +179,18 @@ int main()
179179
}
180180
}
181181
```
182+
183+
## `+``-`
184+
```C++
185+
#include <iostream>
186+
187+
int main()
188+
{
189+
int a = 0 +-+-+-+-+-+-+-+-+ 1 +-+-+-+-+-+-+-+-+ 2;
190+
int b = 0 + + + + + + + + + 1 - - - - - - - - - 2;
191+
192+
std::cout << a << '\n';
193+
std::cout << b << '\n';
194+
}
195+
```
196+

docs/contribution/contributors.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ C++ の歩き方 Web サイトの改善、情報拡充に協力してくれた
4646
- [C++ 書籍 記事加筆](https://github.com/cppmap/cppmap.docs/pull/37)
4747
- [標準化会議 情報提供](https://twitter.com/onihusube9/status/1267252027999973376)
4848
- [C++ ブログ集 情報提供](https://github.com/cppmap/cppmap.docs/issues/42)
49+
- [@Ryoga_exe](https://twitter.com/Ryoga_exe) さん
50+
- [なぜかコンパイルできる 情報提供](https://github.com/cppmap/cppmap.docs/issues/9#issuecomment-792805225)
4951
- [@ryutorion](https://twitter.com/ryutorion) さん
5052
- [C++ 洋書 情報提供](https://twitter.com/ryutorion/status/1333744787136991234)
5153
- [@tak0kada](https://twitter.com/tak0kada) さん

0 commit comments

Comments
 (0)