mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 16:00:07 +08:00
20 lines
411 B
C++
20 lines
411 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
|
|
}
|