Skip to content

Commit 2a028f1

Browse files
authored
Convert print to python3
1 parent cc497c0 commit 2a028f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ all: $(OBJECTS)
1515
$(CC) $(CC_FLAGS) $< -o $@
1616

1717
run: $(OBJECTS)
18-
python -c "import fib; print fib.fib(5)"
18+
python -c "import fib; print(fib.fib(5))"
1919
python -c "import hello; hello.greet('Foobar')"
2020

2121
# To remove generated files

0 commit comments

Comments
 (0)