;; author: {Me :P}
;; year: 2023
;; license: Some License
;;
;; description: {
;; This is an example of documentation.
;;
;; You can get this by using ``script``.
;; }
;;
;; hint: {
;; Notice that we use `;;` for documentation,
;; while the single `;` is just a comment,
;; that will be ignored.
;; }
;;
;; export: [
;; 'myFun
;; 'otherFun
;; 'someConst
;; ]
;;
inspect script
; [ :dictionary
; author : Me :P :string
; year : 2023 :integer
; license : [ :block
; Some :string
; License :string
; ]
; description : This is an example of documentation.
;
; You can get this by using ``script``. :string
; hint : Notice that we use `;;` for documentation,
; while the single `;` is just a comment,
; that will be ignored. :string
; export : [ :block
; myFun :string
; otherFun :string
; someConst :string
; ]
; ]