language: floating point support

This commit is contained in:
2023-09-09 00:08:30 -04:00
parent bf474f6b69
commit e8766323ee
19 changed files with 187 additions and 39 deletions

View File

@ -3,5 +3,6 @@ package gay.pizza.pork.buildext.ast
enum class AstPrimitive(val id: kotlin.String) {
Boolean("Boolean"),
String("String"),
Int("Int")
Int("Int"),
Double("Double")
}