mirror of
https://github.com/elladunbar/tree-sitter-zanscript.git
synced 2025-11-05 23:29:54 -06:00
33 lines
560 B
Text
33 lines
560 B
Text
===============
|
|
Single function
|
|
===============
|
|
|
|
PANLIGHT(LIGHT1,1500,1200,SCROLLTIME)
|
|
|
|
---
|
|
(translation_unit
|
|
(function
|
|
(identifier)
|
|
(identifier)
|
|
(number)
|
|
(number)
|
|
(identifier)))
|
|
|
|
=====================
|
|
Multiple with comment
|
|
=====================
|
|
|
|
Invoke(GSA,1) # Draw arenas
|
|
wait(SHOWTIME) # Delay for (auto) display of asset
|
|
|
|
---
|
|
(translation_unit
|
|
(function
|
|
(identifier)
|
|
(identifier)
|
|
(number))
|
|
(comment)
|
|
(function
|
|
(identifier)
|
|
(identifier))
|
|
(comment))
|