Changes between Version 4 and Version 5 of cypress/FileEditingSoftware/Example
- Timestamp:
- 08/19/15 19:53:47 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/FileEditingSoftware/Example
v4 v5 23 23 24 24 === Challenge === 25 Create a new file named ''helloworld.c'' that contains the following text25 * Create a new file named ''helloworld.c'' that contains the following text 26 26 27 27 {{{#!c … … 34 34 }}} 35 35 36 compile the above text using the following command36 * Compile the above text using the following command 37 37 38 38 {{{ 39 39 [tulaneID@cypress1 ~]$ gcc helloworld.c -o helloworld 40 40 }}} 41 42 * Check that there's a new executable file name helloworld