Visual Basic 용 Hello 예제: hello.bas
Module Hello
Sub Main()
Console.WriteLine("Hello, world!")
End Sub
End Module
Sub Main()
Console.WriteLine("Hello, world!")
End Sub
End Module
컴파일하기> vbc hello.bas
실행하기> hello
실행 결과:
Hello, world!
FreeBasic 용 Hello 예제: hello.bas
print "Hello, world!"
컴파일하기> fbc hello.bas
실행하기> hello
Hello, world!
[관련 자료]
FreeBasic 홈페이지: http://www.freebasic.net/
'프로그래밍 > BASIC' 카테고리의 다른 글
명령행 인자 처리 예제 for Visual Basic (0) | 2009.02.13 |
---|---|
조립제법(Horner의 방법) 예제 for Visual Basic (0) | 2009.02.13 |
한글 RTF 파일의 헤더에 표시된 문자인코딩 타입 (0) | 2009.02.13 |
윈도우 Hello 예제 for Visual Basic 2005 (0) | 2009.01.29 |
Hello 컨솔 예제 for Visual Basic 2005 (0) | 2009.01.29 |