0
How can I pass values to Sublime Text Exp: I created this simple program to make a basic account! Note: there is no box to pass value, I believe you need to use the terminal but I do not know very well
a = input('digite o primeiro valor ')
b = input('digite o segundo valor')
print('o valor do primeiro é:{} e o segundo é:{}'.format(a,b))
Have you tried using the editor’s own console window? I had to make a plugin once, but it was to change the parameters of the command line, but I believe that for input the console might solve. Later, if you give, I test and comment here.
– Bacco
Has that package, which seems to be what you need. Although in this case I prefer to run in the same terminal, but the "philosophy" of Sublime seems to be to install packages for everything (even the package manager is a package that has to be installed separately...)
– hkotsubo