12 lines
189 B
Plaintext
12 lines
189 B
Plaintext
module completions {
|
|
|
|
# factor numbers
|
|
export extern factor [
|
|
...number: string # the numbers to factor
|
|
--help(-h) # Print help
|
|
]
|
|
|
|
}
|
|
|
|
use completions *
|