/ main.c
main.c
1 /* ************************************************************************** */ 2 /* */ 3 /* ::: :::::::: */ 4 /* main.c :+: :+: :+: */ 5 /* +:+ +:+ +:+ */ 6 /* By: lfiorell <lfiorell@student.42nice.fr> +#+ +:+ +#+ */ 7 /* +#+#+#+#+#+ +#+ */ 8 /* Created: 2024/07/19 21:12:59 by lfiorell #+# #+# */ 9 /* Updated: 2024/07/19 22:08:47 by lfiorell ### ########.fr */ 10 /* */ 11 /* ************************************************************************** */ 12 13 /* 14 * Runs the rush's function, taking as arguments 15 * 16 * x : The width of the rectangle to print 17 * y : the height of the rectangle to print 18 */ 19 void rush(int x, int y); 20 21 int main(void) 22 { 23 rush(5, 3); 24 return (0); 25 }