From cf78427fdb3543ca4385b670fa5b5bdcec506341 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Sat, 26 Nov 2022 02:12:27 +0100 Subject: [PATCH] Rand, a much simpler executable subnode :) --- bin/rand.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 bin/rand.py diff --git a/bin/rand.py b/bin/rand.py new file mode 100644 index 000000000..de768ffbf --- /dev/null +++ b/bin/rand.py @@ -0,0 +1,3 @@ +#!/bin/bash +import random +print(random.randint(0, 99))