/Rebol-Names

Random names generator scheme

Primary LanguageRebolMIT LicenseMIT

Rebol-Names CI

Rebol-Names

Random names generator scheme

So far using https://britishsurnames.co.uk/random as a source of names. It can be enhanced in a future to multiple sources and or customizations.

Usage example

  1. Getting a single random name
read names://
  1. Getting multiple random names at once
read/part names:// 10
  1. Getting multiple random names one by one
loop 10 [
	probe read names://
]