Does Swift have the ability to evaluate Swift code as Javascript?

Does Swift provide the ability to evaluate Swift code as Javascript? I would like to create an application that can run Swift code.

+8
ios swift
source share
2 answers

No, it is not. There is a Swift JIT open via REPL, but it is not (currently not less) intended for use in applications.

+5
source share

I think eval () is not running at the moment. For REPL Shell, see Swift Blog here.

+2
source share

All Articles