mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-26 15:10:06 +08:00
18 lines
349 B
C++
18 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
|
||
|
}
|