Skip to content

Upgrade Notes

Due to internal implementation changes, certain features may behave differently between versions.

Upgrading to v1.1.0.0 and Later

In version v1.1.0.0, the compiler was rewritten, resulting in different behavior regarding type handling compared to previous versions.

Prior to v1.1.0.0, the string "123" would be automatically converted to a Number in the code below, allowing the calculation to succeed. Before

However, in v1.1.0.0 and later, this implicit conversion is no longer supported and will result in a type error. All type conversions must now be made explicit. To achieve the same functionality, you must now write the code as follows: After

For more detailed information about the type system, please refer to this dedicated article.