tinyrpc/test/logtest/main.cc

16 lines
341 B
C++

#include <iostream>
#include "logger.h"
using namespace std;
// extern "C" void asm_swap(void *a, void *b) asm("asm_swap");
int main() {
// long a = 1, b = 2;
// cout << "a = " << a << ", b = " << b << endl;
// asm_swap(&a, &b);
// cout << "a = " << a << ", b = " << b << endl;
// return 0;
logger() << "test";
}