Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 262 Bytes

readme.md

File metadata and controls

21 lines (13 loc) · 262 Bytes

C++

repository for storing c++ projects

The follwoing is to try how to write the c++ code in markdown

// test to writing the c++ code in the markdown

#include<iostream>

using namespace std;

int main()
{
  cout<<"hello_world";
  return 0;
}