Posts

Showing posts from March, 2022

ScriptPro Language

ScriptPro compiled into js like TypeScript .pro extensions It has different syntax for  assignment operator: a - b -> a instead of a = a - b and opening bracket ' { ' is missing because it is assumed it there by default pro a b -> euclid  // subroutine      while b != 0   // '{' here by default          if a > b    a - b -> a          else  b - a -> b      } // while      return a } // euclid subroutine call   4 24 -> euclid pro main // main subroutine      in -> a b -> euclid -> out      // combined input output } // main

Superposition

superposition of functions z = f( g( x ) )            4'(' + 1'='   total 5     regular x -> g -> f -> z         3'->'   total 3           SuperScript                                3 < 5

SuperScript Language

SuperScript compiled into js like TypeScript sub a b -> euclid {      while b != 0 {          if a > b    a - b -> a          else  b - a -> b      }      return a } subroutine call   4 24 -> euclid sub main {      in -> a b -> euclid -> out      // combined input output }

μ MarkUp Language

μ MarkUp Language   .mu  extensions   [b] ... [/]        bold [h] ... [/]        header [times] ... [/]    font Times [blue] ... [/]      blue color [l] ... [/]         link [ext] ... [/]     extension web app or java applet [img] ... [/]    picture [p] ... [/]        paragraph [div] ... [/]     divider [12] ... [/]       font size [times blue 12] ... [/]    combination [au] ... [/]    audio [v] ... [/]       video [i] ... [/]        italic