Skip to content

Commit f65a8f4

Browse files
committed
Update chapter.md
c++11 -> c+14 in the text, we need to update a picture I think
1 parent f88f817 commit f65a8f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chapters/cplusplus_basics/chapter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ For those just now familiarizing themselves with what it means to write small pr
3333

3434
Let us start by making the smallest, most immediate C++ program possible, then use the convenient environment to test small snippets of C++ code throughout this chapter. In order to do that, we must have a *compiler*, which is a program that translates some code into an actual runnable app, sometimes referred to as the executable file. C++ compilers are mostly free of charge to download, and in a lot of cases, open source. The apps we generate will not automatically show up in places like Apple's App store, Google Play, Steam, Ubuntu Apps Directory, or Pi Store. Instead, they are your personal, private program files and you will be responsible for manually sharing them later on. In the following chapter *OF Setup and Project Structure*, the compiler will sit on your local computer, able to run offline. For now, we will be impatient and compile some casual C++ on the web using a convenient tool by Sphere Research Labs. Please open your web browser and go to [ideone](http://ideone.com) (http://ideone.com).
3535

36-
You will notice right away that there is an editor already containing some code, but it may be set to another language. Let's switch the language to C++11 if it is not already in that mode. Down at the bottom left of the editor, press the button just to the left of "stdin", as shown in Figure 4. The label for this button could be any number of things.
36+
You will notice right away that there is an editor already containing some code, but it may be set to another language. Let's switch the language to C++14 if it is not already in that mode. Down at the bottom left of the editor, press the button just to the left of "stdin", as shown in Figure 4. The label for this button could be any number of things.
3737

3838
![Figure 4](images/where-is-says-java.png "Figure 4")
3939

40-
A menu drops down with a list of programming languages. Please choose C++11, shown in Figure 5.
40+
A menu drops down with a list of programming languages. Please choose C++14, shown in Figure 5.
4141

4242
![Figure 5](images/choose-c11.png "Figure 5")
4343

0 commit comments

Comments
 (0)