创建编写InterIO.go

This commit is contained in:
chenxinquan 2022-11-07 12:10:54 +08:00
parent c52679dd05
commit 609559e0a7
2 changed files with 45 additions and 7 deletions

View File

@ -0,0 +1,41 @@
////////////////////////////////////////////////////////////////
//
// Filename: InterIO.go
//
// Version: 1.0
// Created: 2022年11月07日 12时08分53秒
// Revision: none
// Compiler: go
//
// Author: alpha
// Organization: alpha
// Contacts: chenxinquan@kylinos.com
//
////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////
// Description:
////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////
// Log:
////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////
// Todo:
//
////////////////////////////////////////////////////////////////
package Interpreter
import (
"bufio"
)
////////////////////////////////////////////////////////////////
// InterIO struct
type InterIO struct {
reader *bufio.Reader
writer *bufio.Writer
}

View File

@ -29,14 +29,11 @@
package Interpreter
import (
"bufio"
)
type InterIO struct {
reader *bufio.Reader
writer *bufio.Writer
}
////////////////////////////////////////////////////////////////
// Interpreter interface
type Interpreter interface {
}
process(path string) (InterIO, error)
}