I have only this.
- install vscode extension:
- and next:
scoop bucket add nimblesite https://github.com/Nimblesite/scoop-bucket
- and next:
scoop install osprey
- it runs to the end correctly
- and:
> (get-command osprey.exe).Path
C:\Users\user\scoop\shims\osprey.exe
> osprey.exe --run .\hello.osp
clang: warning: unable to find a Visual Studio installation; try running Clang from a developer command prompt [-Wmsvc-not-found]
clang: error: unable to execute command: program not executable
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: clang failed to compile C:\Users\user\AppData\Local\Temp\hello.ll
> osprey.exe --run .\hello.ospml
clang: warning: unable to find a Visual Studio installation; try running Clang from a developer command prompt [-Wmsvc-not-found]
clang: error: unable to execute command: program not executable
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: clang failed to compile C:\Users\user\AppData\Local\Temp\hello.ll
code :
// hello.osp
let greeting = "Hello from the ML flavor"
print(greeting)
print("2 + 3 = ${2 + 3}")
// hello.ospml
greeting = "Hello from the ML flavor"
print greeting
print "2 + 3 = ${2 + 3}"
I have only this.
scoop bucket add nimblesite https://github.com/Nimblesite/scoop-bucketscoop install ospreycode :