morpho icon indicating copy to clipboard operation
morpho copied to clipboard

Type checking

Open softmattertheory opened this issue 5 months ago • 0 comments

This PR implements type checking in morpho. Declare a variable with a restricted type as follows:

Int a = 5

The morpho compiler will now ensure that anything assigned to this variable meets the type restriction. This is done through a combination of compile time checking (using type inference) and runtime (dynamic) checking.

softmattertheory avatar Nov 12 '25 01:11 softmattertheory