riju/langs/tcl.yaml

30 lines
320 B
YAML

id: "tcl"
aliases:
- "tclsh"
- "tclshrc"
name: "Tcl"
monacoLang: tcl
install:
apt:
- tcl
repl: |
HOME="$PWD" tclsh
input: |
expr 123 * 234
main: ".tclshrc"
template: |
puts {Hello, world!}
createEmpty: ""
run: |
HOME="$PWD" tclsh
scope:
code: |
set x [expr 123 * 234]
input: |
echo $x