User contributions
Jump to navigation
Jump to search
- 21:03, 20 February 2020 diff hist +114 N File extension Created page with "The standard file extension for MiniScript files is: '''.ms''' See also MIME types. Category:Conventions"
- 21:02, 20 February 2020 diff hist +168 N Mime types Created page with "MiniScript scripts may be identified as the following MIME types: * text/x-minicript * application/x-miniscript See also file extension. Category:Conventions"
- 20:59, 20 February 2020 diff hist +73 New
- 14:54, 20 February 2020 diff hist +11 m Main Page
- 14:53, 20 February 2020 diff hist +285 Main Page
- 14:50, 20 February 2020 diff hist +140 N Category:Intrinsic Functions Created page with "Intrinsic functions are functions that are predefined, either as part of the MiniScript core, or added by the host environment." current
- 14:49, 20 February 2020 diff hist +907 N Print Created page with "<c>print</c> is an intrinsic function that displays a string to the user. It is a standard intrinsic, though there may be some implement..."
- 14:39, 20 February 2020 diff hist +23 Parentheses
- 14:39, 20 February 2020 diff hist +1,565 N Parentheses Created page with "Parentheses in MiniScript have only three uses: 1. Use them to group math operations in the order you want them, just as in algebra. <source lang="miniscript">x = (2+4)*7..."
- 04:40, 20 February 2020 diff hist +122 N Category:Operators Created page with "Operators are symbols or keywords that act directly on operands supplied either after, or on either side of, the operator." current
- 04:38, 20 February 2020 diff hist +228 N Category:Data Types Created page with "MiniScript has only a handful of core data types, shown below. Particular host environments may add more, but usually any additional types are implemented as maps using standa..."
- 04:34, 20 February 2020 diff hist +126 N Map Created page with "<c>map</c> is one of the core Category:data types in MiniScript. Category:Language Category:Data Types {{stub}}"
- 04:34, 20 February 2020 diff hist +127 N List Created page with "<c>list</c> is one of the core Category:data types in MiniScript. Category:Language Category:Data Types {{stub}}"
- 04:34, 20 February 2020 diff hist +129 N Number Created page with "<c>number</c> is one of the core Category:data types in MiniScript. Category:Language Category:Data Types {{stub}}"
- 04:33, 20 February 2020 diff hist +129 N String Created page with "<c>string</c> is one of the core Category:data types in MiniScript. Category:Language Category:Data Types {{stub}}"
- 04:32, 20 February 2020 diff hist +152 N End function Created page with "The <c>end function</c> keyword statement terminates a function block. Category:Language Category:Keywords {{stub}}" current
- 04:31, 20 February 2020 diff hist +145 N End while Created page with "The <c>end while</c> keyword statement terminates a while loop. Category:Language Category:Keywords {{stub}}" current
- 04:31, 20 February 2020 diff hist +141 N End for Created page with "The <c>end for</c> keyword statement terminates a for loop. Category:Language Category:Keywords {{stub}}" current
- 04:30, 20 February 2020 diff hist +141 N End if Created page with "The <c>end if</c> keyword statement terminates an if block. Category:Language Category:Keywords {{stub}}" current
- 04:29, 20 February 2020 diff hist +131 N If Created page with "<c>if</c> is the keyword that begins an ''if block''. Category:Language Category:Keywords {{stub}}" current
- 04:28, 20 February 2020 diff hist +180 N Return Created page with "<c>return</c> is a keyword that returns from a function, optionally passing a value to the caller. Category:Language Category:Keywords {{s..." current
- 04:26, 20 February 2020 diff hist +207 N Function Created page with "<c>function</c> is a keyword used to define a subprogram in MiniScript. The term "function" can also refer to such a subprogram. Category:Language..."
- 04:25, 20 February 2020 diff hist +166 N Not Created page with "<c>not</c> is a keyword unary operator that returns the logical negation of its operand. Category:Language Category:Keywords {{stub}}"
- 04:23, 20 February 2020 diff hist +181 N In Created page with "<c>in</c> is a keyword used in a for statement to identify the range which should be iterated over. Category:Language Category:Keywords {{..." current
- 04:22, 20 February 2020 diff hist +126 N False Created page with "<c>false</c> is a keyword value equivalent to 0. Category:Language Category:Keywords {{stub}}" current
- 04:21, 20 February 2020 diff hist +132 N True Created page with "<c>true</c> is a keyword value equivalent to <c>1</c>. Category:Language Category:Keywords {{stub}}"
- 02:35, 20 February 2020 diff hist +148 N Null Created page with "<c>null</c> is a keyword that represents the null value in MiniScript. Category:Language Category:Keywords {{stub}}"
- 02:33, 20 February 2020 diff hist +53 While
- 02:32, 20 February 2020 diff hist +209 N Continue Created page with "<c>continue</c> is a keyword statement that causes execution to jump directly to the next iteration of a for or while loop. Category:Language..."
- 23:32, 19 February 2020 diff hist +186 N Break Created page with "<c>break</c> is a keyword statement that jumps out of the innermost <c>for</c> or <c>while</c> loop. Category:Language [[Category:Keywords]..." current
- 23:31, 19 February 2020 diff hist +418 N While Created page with "<c>while</c> is a keyword used to loop as long as some condition is true. The condition is tested before each iteration of the loop (including the firs..."
- 23:29, 19 February 2020 diff hist +73 Super
- 23:29, 19 February 2020 diff hist +18 Object-oriented programming current
- 23:28, 19 February 2020 diff hist +68 Self current
- 23:27, 19 February 2020 diff hist +5 m Template:Stub current
- 23:26, 19 February 2020 diff hist +228 N Object-oriented programming Created page with "Object-oriented programming (OOP) is an approach to organizing code by dividing it into classes and objects. MiniScript supports prototype-based OOP through <c>new</c>, <..."
- 23:24, 19 February 2020 diff hist +32 Super
- 23:23, 19 February 2020 diff hist +10 m New
- 23:23, 19 February 2020 diff hist +31 Isa
- 23:23, 19 February 2020 diff hist +1 m For
- 23:22, 19 February 2020 diff hist +9 For
- 23:21, 19 February 2020 diff hist +163 N For Created page with "<c>for</c> is a keyword used to loop over a sequence (i.e. a list, map, or string). Category:Language Category:Keywords {{stub}}"
- 23:17, 19 February 2020 diff hist +121 N Category:Keywords Created page with "Keywords are special identifiers which are built into the MiniScript language, and are understood directly by the parser." current
- 23:16, 19 February 2020 diff hist +559 Isa
- 23:10, 19 February 2020 diff hist +183 N Isa Created page with "<c>__isa</c> is a special entry in a map that refers to the map's base class. It is part of MiniScript's support for object-oriented programming. Category:Language..."
- 23:09, 19 February 2020 diff hist +256 N New Created page with "<c>new</c> is a keyword unary operator used to create a subclass or instance. <c>new</c> acts on a map, and returns a new map with __isa set to the opera..."
- 23:07, 19 February 2020 diff hist +146 N Self Created page with "<c>self</c> is a keyword used to refer to the object by which a method was invoked using dot syntax. Category:Language {{stub}}"
- 23:06, 19 February 2020 diff hist +136 N Super Created page with "<c>super</c> is a keyword used to access base class methods from within a subclass method. Category:Language {{stub}}"
- 03:53, 10 February 2020 diff hist +25 m Comments current
- 22:11, 9 February 2020 diff hist -6 m Comments