!47 创建编写InterIO.go

Merge pull request !47 from a-alpha/alpha-dev
This commit is contained in:
a-alpha 2022-11-07 04:10:10 +00:00 committed by Gitee
commit 09bc5ceb05
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
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)
}