Square Brackets
We're making a big change to the Acorn syntax: using square brackets for type parameters, instead of angle brackets.
Before:
inductive List<T> {
nil
cons(T, List<T>)
}
After:
inductive List[T] {
nil
cons(T, List[T])
}