Gleam-inspired typed configuration language (POC)
0

Configure Feed

Select the types of activity you want to include in your feed.

glint / examples / hello.glint
225 B 20 lines
1// Minimal Glint config — the clean style. 2 3type Mode { 4 Dev 5 Prod 6} 7 8type Config { 9 Config( 10 name: String, 11 mode: Mode, 12 port: Int, 13 ) 14} 15 16pub let config = Config( 17 name: "hello", 18 mode: Dev, 19 port: 3000, 20)