Back to Gogs

CodeMirror

public/plugins/codemirror-5.17.0/mode/smalltalk/index.html

0.14.2495 B
Original Source

Smalltalk mode

" This is a test of the Smalltalk code " Seaside.WAComponent subclass: #MyCounter [| count | MyCounter class >> canBeRoot [ ^true] initialize [super initialize. count := 0.] states [^{ self }] renderContentOn: html [html heading: count. html anchor callback: [ count := count + 1]; with: '++'. html space. html anchor callback: [count := count - 1]; with: '--'. ] ] MyCounter registerAsApplication: 'mycounter'

Simple Smalltalk mode.

MIME types defined: text/x-stsrc.