Skip to content

Instantly share code, notes, and snippets.

@yudium
Last active October 28, 2015 09:06
Show Gist options
  • Save yudium/b20e5e35d2819d39b084 to your computer and use it in GitHub Desktop.
Save yudium/b20e5e35d2819d39b084 to your computer and use it in GitHub Desktop.
program Contoh_Penggunaan_Variabel;
var
A, B, C : Integer;
begin
A := 3;
B := 5;
C := A + B; {hasil : 8}
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment