|
@@ -39,6 +39,7 @@ class FibonacciRpcClient(object):
|
|
|
|
|
|
fibonacci_rpc = FibonacciRpcClient()
|
|
|
|
|
|
-print(" [x] Requesting fib(30)")
|
|
|
-response = fibonacci_rpc.call(30)
|
|
|
-print(" [.] Got %r" % response)
|
|
|
+for n in range(10,30, 5):
|
|
|
+ print(" [x] Requesting fib({0})".format(n))
|
|
|
+ response = fibonacci_rpc.call(n)
|
|
|
+ print(" [.] Got %r" % response)
|