about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--064random.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/064random.cc b/064random.cc
index 98ec3156..0180dfae 100644
--- a/064random.cc
+++ b/064random.cc
@@ -4,8 +4,9 @@ RANDOM,
 Recipe_number["random"] = RANDOM;
 :(before "End Primitive Recipe Implementations")
 case RANDOM: {
+  // todo: limited range of numbers, might be imperfectly random
+  // todo: thread state in extra ingredients and results
   products.resize(1);
-  // todo: replace rand()
   products.at(0).push_back(rand());
   break;
 }