mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 17:08:00 +02:00
16 lines
158 B
C++
16 lines
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);
|
||
|
}
|