File: comments.bsh

package info (click to toggle)
bsh 2.0b4-20
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 4,224 kB
  • sloc: java: 23,431; xml: 4,500; sh: 139; makefile: 24
file content (20 lines) | stat: -rw-r--r-- 484 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/java bsh.Interpreter

source("TestHarness.bsh");

/** 
	comment
	// single line
*/

// single line

// if the last line of the file is a single line commet with no 
// terminating line feed the parser errors..  I have tried the obvious
// fix for this problem in the comment expression, but it doesn't work.
this.interpreter.eval("42; // comment at end of line");

complete();

// to trigger in this file
// Use a binary editor to remove the trailing linefeed and see this -->