Enforced consistent naming

This commit is contained in:
2024-06-26 23:24:11 +02:00
parent d1a3ffb1a5
commit 94151773a5
10 changed files with 180 additions and 150 deletions

View File

@ -0,0 +1,3 @@
main() {
x := 123 +++ 456
}

View File

@ -1,3 +1,3 @@
main() {
a :=
x :=
}

View File

@ -1,4 +1,4 @@
main() {
a := 1
a := 2
x := 1
x := 2
}