tinyrpc/test/logtest/main.cc

16 lines
343 B
C++
Raw Permalink Normal View History

#include <iostream>
2024-12-20 21:17:21 +08:00
#include "logger.hpp"
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";
}