sacalon
Sacalon is a general purpose and open source programming language designed to build optimal, maintainable, reliable and efficient software.
파일 탐색기
최종 버전 다운로드 (.zip)- bug_report.md
- feature_request.md
- publish.py
- release.yaml
- test.yaml
- config.yml
- PULL_REQUEST_TEMPLATE
- ast.sa
- config.json
- help.sa
- keywords.sa
- lexer.sa
- parser.sa
- README.md
- sacalon.sa
- token.sa
- generics.has
- lambda.has
- README.md
- logo.png
- logo.svg
- termcolor.png
- 01_install.md
- 0_install.md
- 10_functions.md
- 11_importing.md
- 12_structs.md
- 13_memory_management.md
- 14_interfacing_with_cpp.md
- 1_hello_world.md
- 2_project_manager.md
- 3_config.md
- 4_guessing_game.md
- 5_comments.md
- 6_types.md
- 7_00_variables.md
- 7_01_numbers.md
- 7_02_strings.md
- 7_03_arrays.md
- 7_04_type_compatibility.md
- 8_conditional_statements.md
- 9_loops.md
- CHANGELOG.md
- hpm.md
- ide.md
- index.md
- ROADMAP.md
- stdlib.md
- SUMMARY.md
- builtin.md
- conv.md
- crypto.sha256.md
- datetime.md
- file.md
- functional.md
- http.md
- index.md
- math.md
- os.md
- path.md
- random.md
- regex.md
- stdlib.md
- strings.md
- SUMMARY.md
- termcolor.md
- book.toml
- book.toml
- build.py
- beer.bf
- bench.bf
- hello_world.bf
- os.bf
- README.rst
- triangle.bf
- yapi.bf
- bf.sa
- main.sa
- config.json
- main.sa
- sdl2.sa
- _.sa
- colorized_term.sa
- config.json
- dec.sa
- enum.sa
- fibonacci.sa
- format.sa
- func.sa
- hello
- hello.sa
- linear_regression.sa
- mem.sa
- multiline.sa
- net.sa
- path.sa
- pkg_import.sa
- random_example.sa
- read_from_stdin.sa
- regex.sa
- sha256.sa
- the_super_tiny_compiler.cc
- the_super_tiny_compiler.sa
- typeof.sa
- __init__.py
- ast.py
- docparse.py
- lex.py
- LICENSE
- yacc.py
- __init__.py
- sa_builder.py
- sa_compiler.py
- sa_compiler_utils.py
- sa_error.py
- sa_git.py
- sa_help.py
- sa_import.py
- sa_lexer.py
- sa_parser.py
- sha256.sa
- conv.cc
- conv.hpp
- cwalk.cc
- cwalk.hpp
- datetime.cc
- datetime.hpp
- file.cc
- file.hpp
- http.cc
- http.hpp
- http.ld
- http.wld
- LICENSE-argparse
- LICENSE-cwalk
- LICENSE-libcurl
- LICENSE-picosha2
- math.cc
- math.hpp
- no_std.cc
- os.cc
- os.hpp
- random.cc
- random.hpp
- sha256.cc
- sha256.hpp
- std.cc
- std.hpp
- strings.cc
- strings.hpp
- termcolor.cc
- termcolor.hpp
- webserver.cc
- webserver.hpp
- conv.sa
- datetime.sa
- file.sa
- functional.sa
- http.sa
- math.sa
- os.sa
- path.sa
- random.sa
- regex.sa
- strings.sa
- termcolor.sa
- sacalon.py
- 1.has
- 2.has
- 3.has
- 4.has
- 5.has
- 6.cc
- 6.has
- incomplete_type.has
- op_error_on_string.has
- return_at_end.has
- static.has
- unicode_identifiers.sa
- add.cc
- add.hpp
- assert.sa
- cinclude.sa
- colorized_term.sa
- compatible_type.sa
- config.json
- cuse.sa
- dec.sa
- enum.sa
- fibonacci.sa
- filetest.sa
- for_in.sa
- format.sa
- func.sa
- funcp.sa
- get.sa
- hello.sa
- lambda.sa
- linear_regression.sa
- Makefile
- mem.sa
- memory.sa
- multiline.sa
- null_in_arth.sa
- path.sa
- print_array.sa
- print_struct.sa
- ptr.sa
- range.sa
- read_from_stdin.sa
- README.md
- regex.sa
- return_at_end.sa
- run_tests.sa
- scope.sa
- sha256.sa
- sizeof.sa
- static.sa
- struct_inheritance.sa
- test.sa
- test.txt
- test_sacalon.py
- typeof.sa
- .gitattributes
- .gitignore
- CONTRIBUTING.md
- install.sh
- LICENSE
- logo.jpeg
- Makefile
- README.md
- requirements.txt
- sacalon.spec
- test.txt
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/sacalon/sacalon
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd sacalon
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. Python
쉬움 추천사전 준비물
pip install -r requirements.txt
requirements.txt 등에 명시된 파이썬 라이브러리를 설치합니다.
python <실행할 파일명>.py # README에서 정확한 실행 파일명을 확인하세요
파이썬 스크립트(또는 모듈)를 실행합니다.
에러 메시지 없이 실행되고 터미널에 안내 문구가 출력되면 정상입니다.
3. Make
보통사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Make Linux/macOS는 보통 기본 설치되어 있습니다. Windows는 별도 설치(예: MSYS2, WSL)가 필요합니다.
make
생성된 빌드 설정을 바탕으로 실제 컴파일을 진행해 실행 파일을 만듭니다.
에러 없이 끝나면 성공입니다. 생성된 실행 파일을 직접 실행해보세요.
// repository documentation
Was this content helpful?
(0 ratings)
