chroma/lexers/testdata/alloy.actual
2025-03-22 20:46:00 +13:00

16 lines
188 B
Text

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
}