Skip to content
View KateLin-BASIC's full-sized avatar

Organizations

@Team-WAVE-x
Block or Report

Block or report KateLin-BASIC

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
KateLin-BASIC/README.md

할 거 없음

Pinned

  1. For & Foreach in Pharo For & Foreach in Pharo
    1
    | array |
    2
    
                  
    3
    "For (With variable)"
    4
    1 to: 10 do: [ :i | Transcript show: i; cr ].
    5
    
                  
  2. ZnEasy & ZnClient ZnEasy & ZnClient
    1
    "ZnEasy"
    2
    (ZnEasy getPng: 'https://pharo.org/web/files/pharo.png') asMorph openInWindow
    3
    
                  
    4
    "ZnClient"
    5
    ZnClient new
  3. Creation of Literal Array And Dynami... Creation of Literal Array And Dynamic Array in Pharo
    1
    | literal dynamic dynamicWithSemanticSugar |
    2
    literal := #(Bill Zoey Louis Francis).
    3
    
                  
    4
    dynamic := (Array new: 4)
    5
    	at: 1 put: 'Bill';
  4. Show GrowlMorph in Pharo Show GrowlMorph in Pharo
    1
    GrowlMorph
    2
    	openWithLabel: 'Hello!'
    3
    	contents: 'This is a Description.'
    4
    	color: (Color darkGray)
  5. Create & Write File in Pharo Create & Write File in Pharo
    1
    | file |
    2
    file := 'filename.txt' asFileReference.
    3
    file ensureCreateFile.
    4
    file writeStreamDo: [ :stream | stream nextPutAll: 'Hello, World!' ]
  6. Pharo 개발 환경의 빠른 구성을 위해 작성된 작은 스크립트입니다. Pharo 개발 환경의 빠른 구성을 위해 작성된 작은 스크립트입니다.
    1
    "''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''"
    2
    "  _____   _                          ____          _        _      _____        _                         _   "
    3
    " |  __ \ | |                        / __ \        (_)      | |    / ____|      | |                       | |  "
    4
    " | |__) || |__    __ _  _ __  ___  | |  | | _   _  _   ___ | | __| (___    ___ | |_  _   _  _ __     ___ | |_ "
    5
    " |  ___/ | '_ \  / _` || '__|/ _ \ | |  | || | | || | / __|| |/ / \___ \  / _ \| __|| | | || '_ \   / __|| __|"