1
All checks were successful
/ build-images (push) Successful in 6s
/ run-tests (push) Successful in 9s

This commit is contained in:
ІО-23 Шмуляр Олег 2026-03-18 18:31:13 +02:00
parent e68913b1f6
commit 18592f3266

View File

@ -1,4 +1,6 @@
#!/bin/sh
gcc f.c -o f
./f
gcc f.c -O0 -o f && ./f
gcc f.c -O1 -o f && ./f
gcc f.c -O2 -o f && ./f
gcc f.c -O3 -o f && ./f