23 lines
571 B
Go
23 lines
571 B
Go
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
|
|
// All rights reserved.
|
|
|
|
// common-type-names.go
|
|
package expr
|
|
|
|
const (
|
|
TypeAny = "any"
|
|
TypeNil = "nil"
|
|
TypeBoolean = "boolean"
|
|
TypeFloat = "float"
|
|
TypeFraction = "fraction"
|
|
TypeFileHandle = "file-handle"
|
|
TypeInt = "integer"
|
|
TypeItem = "item"
|
|
TypeNumber = "number"
|
|
TypePair = "pair"
|
|
TypeString = "string"
|
|
TypeDict = "dict"
|
|
TypeListOf = "list-of-"
|
|
TypeListOfStrings = "list-of-strings"
|
|
)
|