Added CPP template file

This commit is contained in:
jakeg00dwin 2025-06-21 14:18:04 -07:00
parent f047a88629
commit 593edd59f1

View file

@ -0,0 +1,16 @@
/*
* Author: username
* Date: todays_date
* filename: module_name.cpp
* description: module_purpose
*/
#include "module_name.h"
// dumb test function
int add_two(int a)
{
int b = a;
b += 2;
return b;
}