diff options
author | Mango0x45 <thomasvoss@live.com> | 2021-01-18 21:49:20 +0000 |
---|---|---|
committer | Mango0x45 <thomasvoss@live.com> | 2021-01-18 21:49:20 +0000 |
commit | c4efb020d5be2b6001fa3837de3f558e32404fc0 (patch) | |
tree | 2bbc8d6923f33fd67a980bef416912fafd414b3d /bc_funcs | |
parent | 91b4d2e34e27f4d3c5c7efc5490e8ab3540be138 (diff) | |
download | steve-bot-c4efb020d5be2b6001fa3837de3f558e32404fc0.tar steve-bot-c4efb020d5be2b6001fa3837de3f558e32404fc0.tar.gz steve-bot-c4efb020d5be2b6001fa3837de3f558e32404fc0.tar.bz2 steve-bot-c4efb020d5be2b6001fa3837de3f558e32404fc0.tar.lz steve-bot-c4efb020d5be2b6001fa3837de3f558e32404fc0.tar.xz steve-bot-c4efb020d5be2b6001fa3837de3f558e32404fc0.tar.zst steve-bot-c4efb020d5be2b6001fa3837de3f558e32404fc0.zip |
Add init and exit BC scripts
Diffstat (limited to 'bc_funcs')
-rw-r--r-- | bc_funcs/exit.bc | 3 | ||||
-rw-r--r-- | bc_funcs/init.bc | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/bc_funcs/exit.bc b/bc_funcs/exit.bc new file mode 100644 index 0000000..1ac644c --- /dev/null +++ b/bc_funcs/exit.bc @@ -0,0 +1,3 @@ +# Any sort of code you want to run AFTER the users input is evaluated + +quit diff --git a/bc_funcs/init.bc b/bc_funcs/init.bc new file mode 100644 index 0000000..68785ff --- /dev/null +++ b/bc_funcs/init.bc @@ -0,0 +1,3 @@ +# Any sort of code you want to run BEFORE the users input is evaluated + +scale = 20 |