mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
8 lines
127 B
Ada
8 lines
127 B
Ada
|
-- RUN: %llvmgcc -c %s -o /dev/null
|
||
|
procedure VCE is
|
||
|
S : String (1 .. 2);
|
||
|
B : Character := 'B';
|
||
|
begin
|
||
|
S := 'A' & B;
|
||
|
end;
|