8 lines
116 B
Go
8 lines
116 B
Go
package instruction
|
|
|
|
type Instruction interface {
|
|
newInstruction() Instruction
|
|
}
|
|
|
|
|
|
func newInstruction() {}
|