【中文版】

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 select, case, default, ends statments:

Select, case, default and ends comprise another type of condition block besides if. They should be used like the following example:

select expr

case value1

    ......

    break

case value2

    ......

    break

......

......

......

default

    ......

ends

. Note that if there is no break at the end of a block of case, MFP will continue to execute the statements in the following case or default block.