mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-01 10:38:51 +00:00
8 lines
139 B
C
8 lines
139 B
C
#include <stdio.h>
|
|
#include "code.h"
|
|
|
|
int main() {
|
|
RBinJavaObj *o = r_bin_java_new ("/tmp/CON.class");
|
|
printf ("Hello World %p\n", o);
|
|
}
|