Skip to content

Instantly share code, notes, and snippets.

@acook
Created March 28, 2014 18:54
Show Gist options
  • Select an option

  • Save acook/9840278 to your computer and use it in GitHub Desktop.

Select an option

Save acook/9840278 to your computer and use it in GitHub Desktop.
REBOL []
x: gen 1x10
x: gen [1 to 10]
print x ;; 1
print x ;; 2
print x ;; 3
y: range 1.2.10
y: range/inc 1x10 2
print y ;; 1
print y ;; 3
print y ;; 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment