MortScript Ver4.11 b5

WindowsMobileで手軽に様々なことができる多機能なスクリプト言語、MortScript Ver4.11のβ版が更新されています。

b5:

  • New assignment operators +=, -=, /=, *=, &=, and \= (like in C, x+=1 is the same as x=x+1)
  • (condition) ? (true value) : (false value) in expressions (like in C)
  • Status window is created only after it's about to be displayed (some PNAs seem to have troubles with invisible windows...)
  • StatusMessageAppend( text ) - appends text to last status message
  • StatusRemoveLastMessage() - removes last status message
  • CharAt( string, position ) - returns single character of string
  • UcChar( code ) - character for given unicode value
  • UcValue( zeichen ) - unicode value for given character
  • Min( wert, wert {,wert} ), Max( wert, wert {,wert} ) - returns smallest resp. biggest value of parameter list (numerical comparison)

Cライクな演算子の追加やステータスウィンドウ関係の更新、いくつかの関数追加がされているようです。