Changes in / [47e18f3:a9ea758]
- Location:
- tests
- Files:
-
- 4 added
- 2 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/io1.cfa
r47e18f3 ra9ea758 10 10 // Created On : Wed Mar 2 16:56:02 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Mar 4 21:42:47 201913 // Update Count : 11 512 // Last Modified On : Sun Feb 21 10:07:07 2021 13 // Update Count : 119 14 14 // 15 15 … … 17 17 18 18 int main() { 19 int x = 3, y = 5, z = 7; 20 sout | x * 3 | y + 1 | z << 2 | x == y | (x | y) | (x || y) | (x > z ? 1 : 2); 21 sout | 0 | 1 | 2 | 3; 22 sout | '0' | '1' | '2' | '3'; 23 sout | 0 | "" | 1 | "" | 2 | "" | 3; 24 sout | nl; 19 sout | nlOff; // auto nl off 25 20 26 sout | nlOff;27 21 sout | "opening delimiters" | nl; 28 22 sout | "x (" | 1; … … 61 55 sout | nl | nl; 62 56 63 sout | nlOn; 57 sout | nlOn; // auto nl on 58 64 59 sout | "override opening/closing delimiters"; 65 60 sout | "x ( " | 1 | " ) x" | 2 | " , x" | 3 | " :x: " | 4; 66 61 sout | nl; 62 63 sout | "spacing"; 64 sout | 0 | 1 | 2 | 3; 65 sout | '0' | '1' | '2' | '3'; 66 sout | 0 | "" | 1 | "" | 2 | "" | 3; 67 sout | nl; 68 69 sout | "expressions"; 70 int x = 3, y = 5, z = 7; 71 sout | x * 3 | y + 1 | z << 2 | x == y | (x | y) | (x || y) | (x > z ? 1 : 2); 67 72 } 68 73
Note: See TracChangeset
for help on using the changeset viewer.