Privacy Policy for Function Calculator Developer: 마종진 Last Updated: 2025.10.23 1. Personal Information Collection - This app Function Calculator does not directly collect any personal information for its core functionality. - However, through our use of Google AdMob advertising services, the following information may be collected: * Advertising ID * Device information * Approximate location data * Service usage records 2. Purpose of Data Collection and Use - Improving app performance and error analysis - Providing personalized advertisements - Analyzing service usage statistics - Enhancing user experience 3. Data Retent...
SimpleMath Script SimpleMath is a programming script with a syntax similar to JavaScript, but extremely simplified to support only number and boolean types. SimpleMath is to be used only for Function Calculator . Here are the key features and rules: Variables Declare variables using the 'var' keyword: var a; var b = 3; Assign values to variables: a = b; a = 3 + b; Variables follow strict scope rules similar to java. Variable should be declared first using 'var' keyword. Without decalaration it can not be used. Data Types Only two data types: number and boolean Types are inferred, not specified Number literals: Any numeric value Boolean literals: true or false Collection data structures such as array or list are not supported. Only single data type number and boolean are supported. SimpleMath does not have "null" or "undefined" unlike javascript. When null or undefined value needs to be returned in a function you can return very unlikely number such...
SimpleMath Script Tutorial Welcome to the SimpleMath Script tutorial! This guide will help you learn the basics of our programmable calculator script, which has a syntax similar to JavaScript but is simplified to support only number and boolean types. Variables Declare variables using the 'var' keyword: var x; var y = 5 ; Assign values to variables: x = y; x = 3 + y ; Data Types SimpleMath supports two data types: Number: Any numeric value Boolean: true or false Types are inferred, not specified. Operators SimpleMath supports the following operators: + : 2 + 1 -> 3 - : 2 - 1 -> 1 * : 2 * 3 -> 6 (multiplication) / : 4 / 2 -> 2 (division) ^ : 2 ^ 3 -> 8 (exponentiation) % : 3 % 2 -> 1 (remainder) = : var num1 = 1; var num2 = 2; (assignment) num1 + num2 -> 3 == : 3 == 3 (3 equals 3) -> true 3 == 2 (3 equals 2) -> false != : 3 != 2 (3 is not equal to 2) -> true 3 != 3 (3 is not equal to 3)-> false < : 2 < 3 (2 i...
Comments
Post a Comment