Ring编程语言中main()函数的重要性是什么?

时间:2016-03-22 07:44:39

标签: scripting-language

所有C语言程序都必须具有main()函数。它是每个程序的核心,但是在Ring编程语言中包含“Main”函数的目的是什么?

这个程序有什么区别

see "hello, world!"

,另一个包含Main函数!

func main
    see "hello, world!"

这是因为有人会将很多陈述作为准备然后使用“Main”函数来开始执行真实逻辑吗?

1 个答案:

答案 0 :(得分:1)

您需要使用Local范围而不是Global范围。

实施例

x = 10
myfunc()
See "X value = " + X  # here i expect that x will be (10)
                # but i will get another value (6) because myfunc() uses x !
Func myfunc
  for x = 1 to 5
     See x + nl
  next

输出:X值= 6

Func Main 
  x = 10
  myfunc()
  See "X value = " + X                         

Func myfunc
  for x = 1 to 5
    See x + nl
  next

输出:X值= 10