Skip to content

JianWang2018/c-plus-plus

Repository files navigation

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;
}