Build systems in Sublime Text

前端 未结 4 1612
北海茫月
北海茫月 2021-01-31 04:34

I\'m just beginning to learn programming (on C++ and Python), and by beginning I mean total beginning (\"hello world\" beginning...). Not wanting to use multiple IDE\'s, I would

4条回答
  •  死守一世寂寞
    2021-01-31 05:00

    So, you don't want to use an IDE but then you want IDE features from a text editor? :)

    Most people who use a text editor for writing code use terminal to build and run the code.

    So, for C++, the instructions are:

    make (or gcc myprogram.c)
    ./myprogram
    

    for a Python program, it's even simpler:

    python ./myprogram.py
    

    If you're not comfortable with terminal, then you probably need an IDE.

提交回复
热议问题