# L-13 MCS 572 Wed 8 Feb 2023 : showthreads.jl """ Run typing JULIA_NUM_THREADS=8 julia showthreads.jl at the command prompt to use 8 threads, or type julia -t 8 showthreads.jl at the command prompt in a terminal window. """ using Base.Threads nbt = nthreads() println("The number of threads : ", nbt)