【中文版】

Introduction

MFP language introduction

operators

function

variable

if

while do for

break continue

select

try catch

class

call

citingspace

help

@compulsory_link

@execution_entry

@build_asset

MFP functions

deploy user functions

call MFP in your app

build Android APK

game programming

chart plotting

MFP math analysis

MFP file procession

number string and array

time date and system

Introduction of SCP

MFP language if, elseif, else, endif statements:

If, elseif, else and endif comprise condition block in MFP. They should be used like the following example:

If conditionA

    ......

elseif conditionB

    ......

elseif conditionC

    ......

......

......

......

else

    ......

endif

, where conditionA, conditionB, conditionC, etc. are expressions which have boolean values. If they are not boolean values, MFP converts them to boolean first (if MFP can).