Changeset 8e4aa05 for tests/io/io1.cfa
- Timestamp:
- Mar 4, 2021, 7:40:25 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 77d601f
- Parents:
- 342af53 (diff), a5040fe (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 moved
-
tests/io/io1.cfa (moved) (moved from tests/io1.cfa ) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/io/io1.cfa
r342af53 r8e4aa05 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.