Visualizer node aggregates
Fix in macro expander
This commit is contained in:
@@ -234,8 +234,29 @@ object Form1: TForm1
|
||||
object ScriptMemo: TMemo
|
||||
Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
|
||||
DataDetectorTypes = []
|
||||
Lines.Strings = (
|
||||
'(do'
|
||||
'(defmacro repeat [n body]'
|
||||
' `(do'
|
||||
' (def loop (fn [counter]'
|
||||
' (if (> counter 0)'
|
||||
' (do'
|
||||
' ~body'
|
||||
' (recur (- counter 1))'
|
||||
' )'
|
||||
' (do'
|
||||
' )'
|
||||
' )'
|
||||
' ))'
|
||||
' (loop ~n)'
|
||||
' )'
|
||||
')'
|
||||
''
|
||||
'(repeat 5 "hi")'
|
||||
')')
|
||||
StyledSettings = [Size, Style, FontColor]
|
||||
TextSettings.Font.Family = 'Consolas'
|
||||
OnChange = ScriptMemoChange
|
||||
OnChangeTracking = ScriptMemoChange
|
||||
Align = Right
|
||||
Position.X = 920.000000000000000000
|
||||
|
||||
Reference in New Issue
Block a user