package com.de22.javabytecode; /** * Copyright Declarative Engineering LLC 2008

* 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()); } }