A fork of RinRi's CPSRC. A tool for C++ Competitive programmers to do stuff
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

README.md 602 B

4 yıl önce
4 yıl önce
4 yıl önce
1234567891011121314151617181920212223242526
  1. # Installation
  2. Clone the repository. Make setup.sh executable and run it:
  3. ```shell
  4. chmod +x setup.sh
  5. ./setup.sh
  6. ```
  7. First, you have to write template which will be used to create new files. Remember the number of the line with which you usually start coding. Enter it. That is it!
  8. # Using
  9. In order to create a new .cpp file, you have to run create.sh with filename argument without an extension:
  10. ```shell
  11. ./create.sh 1234a
  12. ```
  13. You will be automatically redirected to neovim.
  14. To compile&run file, you can just use run.sh with filename(this time with extension):
  15. ```shell
  16. ./run.sh 1234a.cpp
  17. ```