Pure Programmer
Blue Matrix


Cluster Map

Project: Random Integers

Write a program to generate a random list of integer values. The program should accept three values on the command line: minimum value, maximum value and the number of integers to generate. The integers should be printed one per line.

Output
$ swiftc RandomIntegers.swift -I . -L . -lUtils error: link command failed with exit code 1 (use -v to see invocation) ld: library not found for -lUtils clang: error: linker command failed with exit code 1 (use -v to see invocation)

Solution