- TI nspire
[TI-BASIC] Program 과 Function 의 차이
출처 : http://tibasicdev.wikidot.com/nspire
| Program | Function |
Return a result? 결과를 반환하는가? | No | Yes |
Can be used in an expression? 수식내에서 사용 가능한가? | No | Yes |
Can run in applications other than Calculator? 계산기 이외의 어플에서 실행가능한가? | No | Yes |
Can use all the commands? 모든 명령어를 사용할 수 있나? | Yes | No |
Can use multiple variable types? 다중 변수타입을 사용할 수 있는가? | Yes | Yes |
Can access global variables? 전역 변수에 접근할 수 있는가? | Yes | Yes |
Can modify and create global variables? 전역 변수를 생성하거나 바꿀 수 있는가? | Yes | No |
Can call subprograms? 서브프로그램을 호출할 수 있는가? | Yes | No |
Can call functions? 함수를 호출할 수 있는가? | Yes | Yes |