Add highlight tests

This commit is contained in:
Stephan Seitz 2021-11-20 15:09:19 +01:00
parent 8016b74cea
commit 53ba38327e
2 changed files with 107 additions and 0 deletions

View file

@ -0,0 +1,17 @@
#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
}