Stenway Developer Network

The LimaScript Package Format

The core of the LimaScript programming system, the LimaScript packages, are SML documents.

LimaScriptPackage
  Dependencies
    Internal System-[0.0.1.0]
    Public LimaScript-[0.0.1.0]
  End
  Namespace
    Class
      Name App
      Extends LimaScript\Object
      Method
        Type Static
        Name main
        Params
          Param LimaScript\Array<LimaScript\String> args
        End
        Begin
          CallSM System\Console void:write(LimaScript\String) Args 1 String "Hello world"
        End
      End
    End
  End
End