spacevim/bundle/nvim-treesitter-0.9.1/tests/indent/cpp/stream.cpp

8 lines
95 B
C++
Raw Normal View History

2024-08-21 14:17:26 +08:00
#include <iostream>
void foo(int x) {
std::cout << x
<< x + 1
<< x + 2;
}