You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
414 B
11 lines
414 B
(my-struct :name "Test struct"
|
|
:other-name "--------------------------------"
|
|
:yet-another-name "Another name"
|
|
:optional-name ""
|
|
:value 42
|
|
:decimal -0.330000
|
|
:support-arrays (array 1.f 2.f)
|
|
:truthy false
|
|
:charry 97
|
|
:nested (my-nested-struct :message "Hello!"
|
|
:is-awesome true))
|
|
|