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
procedure forstatement; | |
- var lattr: attr; lsy: symbol; | |
- lcix, laddr: integer; | |
- llc, lcs: addrrange; | |
- typind: char; (* added for typing [sam] *) | |
- begin llc := lc; | |
- with lattr do | |
- begin typtr := nil; kind := varbl; | |
- access := drct; vlevel := level; dplmt := 0 | |
- 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
#include <iostream> | |
#include <vector> | |
using namespace std; | |
typedef struct{ | |
int x, y; | |
char letter; | |
} letter; | |
int main(int argc, const char * argv[]) { |