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