This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # Total Loan Amount 1500.00 | |
| # | |
| # Monthly Payment 20.78 | |
| # | |
| # Initial Rounding Adjustment 0.005000000 | |
| # | |
| # Loan Raw Rounding Adjusted Truncated | |
| # Lender Amounts Percentages Amount Adjustment Amount Amount Remainder | |
| # | |
| # A1 50.00 0.033333.. 0.69265974 [0.00500000] 0.69765974 0.69 0.00765974 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | function ltrim(s) { sub(/^[ \t\r\n]+/, "", s); return s } | |
| function rtrim(s) { sub(/[ \t\r\n]+$/, "", s); return s } | |
| function trim(s) { return rtrim(ltrim(s)); } | |
| BEGIN { | |
| # whatever | |
| } | |
| { | |
| # whatever | |
| } | |
| END { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | -- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | |
| -- stored procedures for loan origination and payment streams | |
| -- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | |
| DROP FUNCTION IF EXISTS fvif$$ | |
| CREATE FUNCTION fvif | |
| ( | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | -- =================================================================== | |
| -- Various MySQL stored procedures for handling dates, | |
| -- as well as populating date and time dimensions. | |
| -- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | |
| -- | |
| -- Date Dimension | |
| -- | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | program terrainvehicle; | |
| uses crt,graph; | |
| const | |
| xsize = 50; | |
| ysize = 50; | |
| type | |
| polys = array[1..5,1..3,1..5] of record | |
| x,y : word; | |
| end; | |
| fillarea = array[1..5,1..3,1..2] of byte; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* | |
| Polyiminoes : | |
| Pentominoes,Hexominoes, etc. | |
| */ | |
| #include <stdio.h> | |
| #include "conio.h" | |
| #include "stdlib.h" | |
| #define OMINOS 8 | |
| /* To check diagonal connections define DIAGONALS, otherwise for | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* Survive */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include "conio.h" | |
| /* The playing grid is OCEANXxOCEANY. */ | |
| #define OCEANX 13 | |
| #define OCEANY 12 | |
| /* These are the types of landforms there are in the game. */ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* | |
| Evaluates a parenthesized boolean function of at most 9 variables. | |
| */ | |
| #include <stdio.h> | |
| #include <ctype.h> | |
| #include <stdarg.h> | |
| #define ANDSYMBOL (char)'*' | |
| #define ORSYMBOL (char)'+' | |
| #define XORSYMBOL (char)'@' | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* | |
| Cellular Automata for Flow Modelling | |
| C++ version | |
| Gordon Mercer and Andy Collins | |
| January 24,1991 | |
| Adapted for C by Andy Collins | |
| January 25,1991 | |
| */ | |
| #include <stdlib.h> | |
| #include <graphics.h> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* | |
| "Life" | |
| John Horton Conway's Cellular Automaton | |
| Using meta-blocks | |
| */ | |
| #include <stdio.h> | |
| /* For IBMs only. */ | |
| #include "conio.h" |