introduce ir nop to fix loop bugs

This commit is contained in:
Alex Zenla
2025-07-24 22:30:18 -07:00
parent 837e0c1b38
commit 69230deefc
11 changed files with 65 additions and 12 deletions

View File

@ -1,7 +1,10 @@
export type int32 = native internal "int32"
export type int64 = native internal "int64"
export type float32 = native internal "float32"
export type float64 = native internal "float64"
export type string = native internal "string"
export type list = native internal "list"
export type bool = native internal "bool"
export type any = native internal "any"
export func print(values...: string)