-
Notifications
You must be signed in to change notification settings - Fork 25
Home
Bérenger Dalle-Cort edited this page Oct 22, 2017
·
3 revisions
Coding for fun !
- Open a terminal
- goto Nodable folder
- compile with "g++ *.cpp"
- run with "./a.out"
You can use Nodable like a simple command line interpreter. Few examples :
If you type 20 + 30
the result will be 50
If you type a = 10 + 30
the result will be 30
because it is the value of a. Then if you type a + 10
the result will be 40