19 lines
390 B
Go
19 lines
390 B
Go
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
|
|
// All rights reserved.
|
|
|
|
// common-type-names.go
|
|
package expr
|
|
|
|
const (
|
|
TypeAny = "any"
|
|
TypeBoolean = "boolean"
|
|
TypeFloat = "float"
|
|
TypeFraction = "fraction"
|
|
TypeHandle = "handle"
|
|
TypeInt = "integer"
|
|
TypeItem = "item"
|
|
TypeNumber = "number"
|
|
TypePair = "pair"
|
|
TypeString = "string"
|
|
)
|