Skip to content
This repository has been archived by the owner on May 4, 2022. It is now read-only.

Create stekovaya.toml #139

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions languages/stekovaya.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name = "stekovaya"
entrypoint = "main.stk"
extensions = [
"stk"
]
aptKeys = ["3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF"]
aptRepos = [
"deb https://download.mono-project.com/repo/ubuntu stable-bionic main"
]
packages = [
"mono-complete"
]
setup = [
"cd /tmp",
"git clone https://github.com/stekovaya-org/Stekovaya.git",
"mv Stekovaya/stkvy.exe stkvy.exe",
"rm -rf Stekovaya",
"mv stkvy.exe /usr/bin/stkvy.exe"
]

[run]
command = [
"mono",
"/usr/bin/stkvy.exe",
"main.stk"
]

[tests]

[tests.hello]
code = "STR hello END MSG"
output = "hello\n"