Skip to content

Instantly share code, notes, and snippets.

View sebastien-gagneur's full-sized avatar

Sébastien Gagneur sebastien-gagneur

View GitHub Profile
@sebastien-gagneur
sebastien-gagneur / .dart
Last active October 20, 2021 13:34
SQL code to introduce lesson 1 - Work with a table
void main()
{
// one call on Point()
Point A = Point.withParameters(2,1);
print(A.info());
// second call on Point()
Cercle C = Cercle.byDefault(A);
print(C.info());
Cercle D = Cercle.withParameters(3,A);
print(D.info());