chroma/lexers/testdata/alloy.actual

17 lines
188 B
Text
Raw Permalink Normal View History

2025-03-22 20:46:00 +13:00
sig Node {
edges: set Node
}
fact "Connected graph" {
some n: Node | n.*edges = Node
}
fact "No self edges" {
no iden & edges
}
one sig Ball {
-- note the var
var loc: Node
}