Skip to content

Instantly share code, notes, and snippets.

View AChep's full-sized avatar
:octocat:

Artem Chepurnyi AChep

:octocat:
View GitHub Profile
@AChep
AChep / gist:ce250476d0aec34818d2
Last active August 29, 2015 14:06
matrix.pas
program matrix_solver;
const
MAX_LEN = 10;
type
MATRIX = record
m : array [1..MAX_LEN, 1..MAX_LEN] of real;
n : integer;
end;