import '../lib/peparse.dart';
void main() {
const filepath = "D:\\software\\qq\\Bin\\QQ.exe";
var pe = PeFile.parseFile(filepath);
print(pe.toString());
}