- 𝐃𝐢𝐬𝐜𝐨𝐫𝐝 𝐒𝐞𝐫𝐯𝐞𝐫
- 𝐘𝐨𝐮𝐭𝐮𝐛𝐞
- 𝐖𝐞𝐛𝐒𝐢𝐭𝐞
- 😀𝐯𝐞𝐫𝐲 𝐜𝐨𝐨𝐥 𝐰𝐞𝐛𝐬𝐢𝐭𝐞 😀
- 𝐀𝐥𝐥𝐚𝐡
import os
proc put(str: string, ins: int, what: string): string =
var a = str.substr(0, ins) & what & str.substr(ins)
return a
echo put("!\"Dialz", 7, "_†#0069")
proc exec(str: string): void =
discard os.execShellCmd(str)
exec("nim c -d:release ./main.nim")
exec("start ./main.exe")