CMIContent Marketing InstituteContent directory

News · General · Archive

CodeMirror: Forth mode

Space Home News

.CodeMirror { font-family: 'Droid Sans Mono', monospace; font-size: 14px; }

CodeMirror

Home Manual Code

Language modes Forth

Forth mode

\ Insertion sort

: cell- 1 cells - ;

: insert ( start end -- start ) dup @ >r ( r: v ) begin 2dup swap ! ;

: sort ( array len -- ) 1 ?do dup i cells + insert loop drop ;

var editor = CodeMirror.fromTextArea(document.getElementById("code"), { lineNumbers: true, lineWrapping: true, indentUnit: 2, tabSize: 2, autofocus: true, theme: "colorforth", mode: "text/x-forth" });

Simple mode that handle Forth-Syntax ( Forth on WikiPedia ).

MIME types defined: text/x-forth .

More in Archive · More in General · More in News