File: comments.mpt

package info (click to toggle)
mathpiper 0.81f%2Bsvn4469%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 36,572 kB
  • sloc: java: 57,479; lisp: 13,721; objc: 1,300; xml: 988; makefile: 114; awk: 95; sh: 38
file content (27 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

NextTest("Checking comment syntax supported");
[
  Local(a);
  /* something here */
  a:= 3;
  // test 1

  // /* test2 */

  /* // test3 */

  //Echo({a, Nl()});

  // Check parsing
  a==-b; // This would generate a parse error in Yacas versions 1.0.54 and earlier
];


[ //Test ExceptionCatch and ExceptionGet.
  Local(exception);
  exception := False;
  ExceptionCatch(Check(False, "Unspecified", "some error"), exception := ExceptionGet());
  Verify(exception = False, False);
];