Skip to content
Snippets Groups Projects
Commit 550a736e authored by Yann Roberge's avatar Yann Roberge
Browse files

Correctif: mappage des args stdin à m et n

parent 1dbf9a21
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,9 @@
function main()
-- Mesure parallele au sens du robot
print("Lignes: ", arg[1])
m = arg[1]
print("Colonnes:", arg[2])
n = arg[2]
print("--")
carreler(m, n)
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment