rust-main-abel-test 0.1.0

abel-test
Documentation
#include <iostream>
#include <string.h>

using namespace std;

struct Stu {
  char name[32];
  int age;
};

int
main()
{
  Stu s;
  memset(&s, 0, sizeof(s));
  strcpy(s.name, "abc");
  cout << s.name << endl;
  #if 1
    cout << 1 << endl;
  #endif
  return 0;
}