Changeset 35317 in project
- Timestamp:
- 03/21/18 15:32:56 (5 weeks ago)
- Location:
- wiki/man/5
- Files:
-
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
wiki/man/5/Debugging
r35314 r35317 10 10 "Feathers" is a [[Tcl/Tk|http://tcl.tk]] script, installed together with 11 11 all other components of the CHICKEN system. To use the debugger, Tcl/Tk version 12 8.5 must be installed.12 8.5 or later must be installed. 13 13 14 14 Once the debugger is started, it waits for a client program to connect to -
wiki/man/5/Declarations
r35314 r35317 11 11 declarations override command-line options. When multiple declarations 12 12 conflict, the one appearing textually last overrides any previous one. 13 14 Declarations can be used to improve performance and to give entities 15 like procedures are variables special properties that can result in 16 better performing code. Most of these declarations subtly change the 17 semantics of standard Scheme code with respect to the declared 18 entities, so care must be taken when using them. 19 20 Declarations are always ignored in {{csi}} (the interpreter) or in evaluated code. 13 21 14 22 … … 59 67 60 68 Declares that the given identifiers are always bound to procedure values. 61 62 63 === check-c-syntax64 65 [declaration specifier] (check-c-syntax)66 [declaration specifier] (not check-c-syntax)67 68 Enables or disables syntax-checking of embedded C/C++ code fragments. Checking C syntax is the default.69 69 70 70
Note: See TracChangeset
for help on using the changeset viewer.