10 lines
183 B
Python
10 lines
183 B
Python
|
|
from __future__ import print_function
|
||
|
|
from multiprocessing import Pool
|
||
|
|
|
||
|
|
def main():
|
||
|
|
p = Pool()
|
||
|
|
p.map(print, 'Enjoy Rosetta Code'.split())
|
||
|
|
|
||
|
|
if __name__=="__main__":
|
||
|
|
main()
|