Search found 2 matches
- Sat Dec 06, 2014 10:01 am
- Forum: Oberon Language
- Topic: Oberon Competition - Win a $US50 Amazon Gift Voucher
- Replies: 6
- Views: 70217
Re: Oberon Competition - Win a $US50 Amazon Gift Voucher
Here's my first submission: MODULE Quiz; VAR a1*, a2*: ARRAY 1000 OF INTEGER; PROCEDURE Init*; BEGIN a1[0] := 0; a1[1] := 1; a1[2] := 2; a1[3] := 3; a1[4] := 4; a1[5] := 5; a1[6] := 6; a1[7] := 7; a1[8] := 8; a1[9] := 9; a1[10] := 10; a1[11] := 11; a1[12] := 12; a1[13] := 13; a1[14] := 14; a1[15] :=...
- Wed Sep 14, 2011 11:27 am
- Forum: Oberon Language
- Topic: Further revision of Oberon-07
- Replies: 26
- Views: 236812
Re: Further revision of Oberon-07
I think the elimination of single quote string delimiters is unfortunate (there is no \" convention for including double quotes in a string). I agree, but not because I need to include double quotes in strings very often. AFAIK single quotes as string delimiters were supported ever since Pascal, an...