From 9c3aaee9ed213c100c72259a7c572d54a4b9822b Mon Sep 17 00:00:00 2001 From: Hyacinthe Cartiaux Date: Thu, 6 Mar 2014 01:18:37 +0100 Subject: [PATCH] [bc] Initial configuration (scale) --- bc/bcrc | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 bc/bcrc diff --git a/bc/bcrc b/bc/bcrc new file mode 100644 index 0000000..718150f --- /dev/null +++ b/bc/bcrc @@ -0,0 +1,21 @@ +################################################################################ +# .bcrc -- configuration file for [bc](https://www.gnu.org/software/bc/) +# _ +# | |__ ___ _ __ ___ +# | '_ \ / __| '__/ __| +# _| |_) | (__| | | (__ +# (_)_.__/ \___|_| \___| +# +################################################################################ + +# scale defines how some operations use digits after the decimal point. +# The default value of scale is 0. + +scale=2 + +# ibase and obase define the conversion base for input and output numbers. +# The default for both input and output is base 10. + +ibase=10 +obase=10 +