7 lines
102 B
Go
7 lines
102 B
Go
package core
|
|
|
|
// Position represents a location in the buffer
|
|
type Position struct {
|
|
Line, Col int
|
|
}
|