mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-13 16:16:08 -05:00
10 lines
174 B
Batchfile
10 lines
174 B
Batchfile
|
; count.cmd -- create a buffer with digit from 1 to n
|
||
|
set %i 1
|
||
|
!while &less %i 2000000
|
||
|
insert-string %i
|
||
|
newline
|
||
|
set %i &add %i 1
|
||
|
!endwhile
|
||
|
write-file count.txt
|
||
|
exit-emacs
|