12 lines
229 B
Java
12 lines
229 B
Java
// Sample Java GhidraScript
|
|
// @category Examples
|
|
import ghidra.app.script.GhidraScript;
|
|
|
|
public class SampleScript extends GhidraScript {
|
|
|
|
@Override
|
|
protected void run() throws Exception {
|
|
println("Sample script!");
|
|
}
|
|
}
|