dataset/seed/applicationservice/2022.03.08/redis/creolefuncs/redis.py
Emmanuel Garette 0bfbf16152 *-server => *
2022-04-08 18:55:38 +02:00

11 lines
188 B
Python

# -*- coding: utf-8 -*-
#
# just add 2 numbers ...
#
def add(num1, num2):
return str(int(num1) + int(num2)).decode("utf-8")
def intAdd(num1, num2):
return int(num1) + int(num2)