1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-20 17:08:00 +02:00
Beef/IDE/mintest/src/cpp/test1.cpp
2019-08-23 11:56:54 -07:00

16 lines
No EOL
158 B
C++

#include <stdio.h>
int gVal1 = 123;
int gVal2 = 0;
int gVal3;
template <typename T>
void Poofie(T a)
{
printf("2\n");
}
void Fart()
{
Poofie<int>(234);
}