mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
all: unify const names to snake_case
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
// hanoi tower
|
||||
const (
|
||||
Num = 7
|
||||
num = 7
|
||||
)
|
||||
|
||||
fn main() {
|
||||
hanoi(Num, 'A','B','C')
|
||||
hanoi(num, 'A','B','C')
|
||||
}
|
||||
|
||||
fn move(n int, a, b string) int {
|
||||
|
Reference in New Issue
Block a user