1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-20 06:55:41 +08:00

18 lines
349 B
C++
Raw Normal View History

#include <iostream>
#include <cstdlib>
// ^ include
// ^ string
auto main( int argc, char** argv ) -> int
// ^ parameter
2022-11-14 00:10:02 +08:00
// ^ type
// ^ TSType
// ^ operator
{
std::cout << "Hello world!" << std::endl;
return EXIT_SUCCESS;
// ^ keyword.return
// ^ constant
}