Site Tools


pub:software:development:vscodium:cpp:get_started

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
pub:software:development:vscodium:cpp:get_started [2026/08/26 07:32] – [Using the format library] adminpub:software:development:vscodium:cpp:get_started [2026/08/26 07:49] (current) – [Get started with VSCodium C++] admin
Line 1: Line 1:
-====== Get started with VSCodium C++ ====== +====== Get started with C++ and VSCodium ====== 
-This page describes how to get started with C++ development, first using a simple makefile, without a specific editor, then using the same makefile within [[https://vscodium.com/|VSCodium]] with some of its supporting features.+This page describes how to get started with C++ development, first using nothing but a cpp file and a simple makefile, created without a specific editor. Once that worksit continues with describing how to use that same makefile within [[https://vscodium.com/|VSCodium]]. An advantage to use VSCodium is that it offers practical guidance during writing, helping to write code faster.
  
  
Line 287: Line 287:
  
 <columns 100% *100%*> <columns 100% *100%*>
-|  {{:software:programming:vscodium_project_first_view.png?direct&400|}}  |+|  {{:pub:software:development:vscodium:cpp:vscodium_project_first_view.png?direct&400|}}  |
 |  //VSCodium first screen after opening via command line"//  | |  //VSCodium first screen after opening via command line"//  |
 </columns> </columns>
Line 333: Line 333:
  
 using namespace std; using namespace std;
-using fmt; // Note that fmt::format will not work+using namespace fmt; // Note that fmt::format or fmt::print will not work with V10 anymore as it did with v9
  
 int main(int argc, char** argv) int main(int argc, char** argv)
Line 356: Line 356:
 #include <iostream> #include <iostream>
  
-using fmt; // Please note that fmt::print does not work+using namespace fmt; // Note that fmt::format or fmt::print will not work with V10 anymore as it did with v9
  
 int main() int main()
pub/software/development/vscodium/cpp/get_started.1787754726.txt.gz · Last modified: by admin