【中文版】

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 break, continue statments:

Break statement can be used in looping blocks (i.e. while ... loop, do ... until, for ... next) or select ... case ... default ... ends condition block. MFP jumps out the inner-most looping block or select ... case ... default ... ends condition block if break is hit.

Continue statement can be used in looping blocks (i.e. while ... loop, do ... until, for ... next). MFP ignores the following statement and goes back to the beginning of the inner-most looping block if continue statement is hit.