Skip to content

Instantly share code, notes, and snippets.

@vznvzn
Created November 27, 2018 02:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vznvzn/b7a56eb7db0d2f080f68c72884a6bf39 to your computer and use it in GitHub Desktop.
Save vznvzn/b7a56eb7db0d2f080f68c72884a6bf39 to your computer and use it in GitHub Desktop.
@echo off
echo. > out.txt
echo. > out1.txt
set n=3
:re
set /a m = n * 4
echo "%n% %m%"
call fsm14b %n% %m% >> out1.txt
set /a n = n + 1
goto re
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment