Frame v0.10.1
Frame v0.10.1 brings a lot of exciting additions to the Frame language, adding both power and standardization to the notation. In addition, the transpiler now can read from stdin as well as still accepting file paths as in the past. This enables improved CI/CD processes involving Frame.
Changelog
Note: The new language features are now supported in Golang, Javascript, Python3. Other languages will be supported in coming releases.
- Go - Fixed deepcopy of compartment in stack history.
- Python - Fixed type hint for class instances.
Stdin support
The CLI has been updated to support stdin:
framec -language rust < HelloWorld.frm > HelloWorld.rs
or
cat HellowWorld.frm | framec -language golang > HellowWorld.go