Files
nvim-treesitter/tests/query/highlights/cpp/test.cpp
2022-10-16 15:50:55 +02:00

19 lines
377 B
C++

#include <iostream>
#include <cstdlib>
// ^ include
// ^ string
auto main( int argc, char** argv ) -> int
// ^ parameter
// ^ type
// ^ type
// ^ operator
{
std::cout << "Hello world!" << std::endl;
// ^ punctuation.delimiter
return EXIT_SUCCESS;
// ^ keyword.return
// ^ constant
}