mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
14870d7625
* Added tests for c++ source and header files and java files. * Added VHDL to languages and tests * Updated readme Updated to reflect VHDL being added to languages
16 lines
169 B
C++
16 lines
169 B
C++
/* 15 lines 7 code 4 comments 4 blanks */
|
|
|
|
#include <iostream>
|
|
|
|
|
|
using namespace std;
|
|
|
|
/*
|
|
* Simple test
|
|
*/
|
|
int main()
|
|
{
|
|
cout<<"Hello world"<<endl;
|
|
return 0;
|
|
}
|