RosettaCodeData/Task/Count-in-octal/Vim-Script/count-in-octal.vim

6 lines
99 B
VimL
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let counter = 0
while counter >= 0
echon printf("%o\n", counter)
let counter += 1
endwhile