expr/common-type-names.go

18 lines
367 B
Go
Raw Normal View History

2024-05-01 07:10:11 +02:00
// 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"
typeString = "string"
2024-05-01 07:10:11 +02:00
)