mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
19 lines
421 B
C++
19 lines
421 B
C++
#include <iostream>
|
|
#include <cstdlib>
|
|
// ^ @include
|
|
// ^ @string
|
|
|
|
auto main( int argc, char** argv ) -> int
|
|
// ^ @type.builtin
|
|
// ^ @parameter
|
|
// ^ @type.builtin
|
|
// ^ @type.builtin
|
|
// ^ @operator
|
|
{
|
|
std::cout << "Hello world!" << std::endl;
|
|
// ^ @punctuation.delimiter
|
|
|
|
return EXIT_SUCCESS;
|
|
// ^ @keyword.return
|
|
// ^ @constant
|
|
}
|