Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 444 Bytes

File metadata and controls

17 lines (13 loc) · 444 Bytes

Changelog

26th May 2026: STRINGIFY built-in macro (#290)

STRINGIFY(hello world) # becomes "hello world"

9th May 2026: show and hide statements work with struct-typed lists and variables (#284)

struct Point {x,y,z}
var Point p;
# these generate show/hide for each field in p
show p;
hide p;