Files
Brainstorm/Foundation Test/src/com/de22/javabytecode/SampleB.java

13 lines
304 B
Java
Raw Normal View History

2014-05-30 10:31:51 -07:00
package com.de22.javabytecode;
/**
* Copyright Declarative Engineering LLC 2008<p>
* Sample code used by the byte code system to test reverse engineering.
*/
public class SampleB {
public static void main(String[] args) {
ISampleA sample = new ChildOfA();
System.out.println(sample.perform());
}
}