Enforced consistent naming

This commit is contained in:
Eduard Urbach 2024-06-26 23:24:11 +02:00
parent 0394d68bdf
commit 51a2308179
Signed by: eduard
GPG key ID: 49226B848C78F6C8
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
}