16 lines
213 B
C++
16 lines
213 B
C++
#include "cstr.h"
|
|
#include <stdio.h>
|
|
|
|
template <typename String>
|
|
void test(String str) {
|
|
// struct {}_=String();
|
|
printf("%d: %s\n",str.size(),str.data());
|
|
}
|
|
|
|
int main()
|
|
{
|
|
test(CSTR("Hello"));
|
|
|
|
return 0;
|
|
}
|
|
|