2014-07-01 03:24:29 +02:00
|
|
|
#!/usr/bin/env julia
|
|
|
|
|
2016-03-20 02:56:42 +01:00
|
|
|
using BaseTestNext
|
2016-03-20 05:28:56 +01:00
|
|
|
using PortAudio
|
2016-03-20 02:56:42 +01:00
|
|
|
|
2016-03-20 05:28:56 +01:00
|
|
|
println("DEVICES FOUND:")
|
|
|
|
for d in PortAudio.devices()
|
|
|
|
println(d)
|
2014-07-01 03:24:29 +02:00
|
|
|
end
|
|
|
|
|
2016-03-18 23:09:37 +01:00
|
|
|
exit(0)
|