Problem
I'm tring to make simple Swift script using Swift REPL and MySQL connector from Perfect.
My directory looks like this
/Users/Me/Desktop/test
|-sqlTest.swift
|-MySQL.framework
According to this anwser command to launch script should look be
swift -I ~/Desktop/test/ sqlTest.swift
but instead of success I'm getting
sqlTest.swift:1:8: error: no such module 'MySQL'
Question
So how I should add framework to REPL or maybe this is not possible at all?