İçeriğe atla
0
  • Ders Ara
  • Ana Sayfa
  • Kategoriler
    • All Categories
      • Individual Categories
    • Gruplar
    • Okunmamış 0
    • Güncel
    • Kullanıcılar
    • Hakkımızda
    • Öğrenci Fırsatları
    • Akademik Takvim
    • CV oluşturucu
    • IEU Timetable
    • Devamsızlık App
    • IEU GPA Hesaplayıcı
    • Niki Cüzdan
    • Ders Ara
    • Ana Sayfa
    • Kategoriler
      • All Categories
        • Individual Categories
      • Gruplar
      • 0 Okunmamış 0
      • Güncel
      • Kullanıcılar
      • Hakkımızda
      • Öğrenci Fırsatları
      • Akademik Takvim
      • CV oluşturucu
      • IEU Timetable
      • Devamsızlık App
      • IEU GPA Hesaplayıcı
      • Niki Cüzdan
      Daralt
      IEU Forum – İzmir Ekonomi Üniversitesi Öğrenci Topluluğu Platformu

      IEU Forum

      -- çevrimiçi
      1. Ana Sayfa
      2. Concatenative Programming

      Concatenative Programming

      3 Konu 3 İleti View Original

      <p>Hello!</p>
      <p>This space is for sharing news, experiences, announcements, questions, showcases, etc. regarding concatenative programming concepts and tools.</p>
      <p>We’ll also take any programming described as:</p>
      <ul>
      <li>pipelined</li>
      <li>stack-oriented</li>
      <li>tacit</li>
      <li>postfix / reverse Polish notation (RPN)</li>
      <li>fluent</li>
      <li>cascading</li>
      <li>chained</li>
      </ul>
      <hr />
      <p>From <a href="https://en.wikipedia.org/wiki/Concatenative_programming_language" rel="nofollow">Wikipedia</a>:</p>
      <blockquote>
      <p>A concatenative programming language is a point-free computer programming language in which all expressions denote functions, and the juxtaposition of expressions denotes function composition. Concatenative programming replaces function application, which is common in other programming styles, with function composition as the default way to build subroutines.</p>
      </blockquote>
      <blockquote>
      <p>For example, a sequence of operations in an applicative language like the following:</p>
      </blockquote>
      <pre style="background-color:#ffffff;">
      <span style="color:#323232;">y = foo(x)
      </span><span style="color:#323232;">z = bar(y)
      </span><span style="color:#323232;">w = baz(z)
      </span></pre>
      <blockquote>
      <p>…is written in a concatenative language as a sequence of functions:</p>
      </blockquote>
      <p><code>x foo bar baz</code></p>
      <hr />
      <h3>Active Languages</h3>
      <p>Let me know if I’ve got any of these misplaced!</p>
      <h4>Primarily Concatenative</h4>
      <ul>
      <li><a href="https://forth-standard.org/" rel="nofollow">Forth</a></li>
      <li><a href="https://factorcode.org/" rel="nofollow">Factor</a></li>
      <li><a href="http://www.retroforth.org/" rel="nofollow">Retro</a></li>
      <li><a href="https://min-lang.org/" rel="nofollow">min</a></li>
      <li><a href="https://github.com/Wodan58/Joy" rel="nofollow">Joy</a></li>
      <li><a href="https://www.uiua.org/" rel="nofollow">Uiua</a></li>
      <li><a href="https://github.com/skyrod-vactai/kcats" rel="nofollow">kcats</a></li>
      <li><a href="https://github.com/cicada-lang/inet" rel="nofollow">iNet</a></li>
      <li><a href="https://github.com/mlatu-lang/mlatu" rel="nofollow">mlatu</a></li>
      <li><a href="http://skarnet.org/software/execline/grammar.html" rel="nofollow">Execline</a></li>
      </ul>
      <h4>Concatenative-ish, Chain-y, Pipe-y, Uniform Function Call Syntax, etc.</h4>
      <ul>
      <li><a href="https://nim-lang.org/" rel="nofollow">Nim</a></li>
      <li><a href="https://www.roc-lang.org/tutorial#the-pipe-operator" rel="nofollow">Roc</a></li>
      <li>Unix Pipes</li>
      <li><a href="https://github.com/cognate-lang/cognate" rel="nofollow">Cognate</a></li>
      <li><a href="https://dlang.org/" rel="nofollow">D Programming Language</a></li>
      <li><a href="http://koka-lang.org/" rel="nofollow">Koka</a></li>
      <li><a href="https://gills.pages.dev/revo/" rel="nofollow">revo</a></li>
      </ul>
      <hr />
      <h3>Cheat Sheets & Tutorials</h3>
      <ul>
      <li><a href="https://learnxinyminutes.com/docs/factor/" rel="nofollow">Learn Factor in Y minutes</a></li>
      <li><a href="https://andreaferretti.github.io/factor-tutorial/" rel="nofollow">A panoramic tour of Factor</a></li>
      <li><a href="https://programming.dev/post/13396636" rel="nofollow">Factor Tutorial Video</a></li>
      </ul>
      <h3>Discord</h3>
      <ul>
      <li><a href="https://discord.gg/jav75FpVHg" rel="nofollow">Concatenative</a></li>
      <li><a href="https://discord.gg/QxJYZx3QDf" rel="nofollow">Factor</a></li>
      </ul>
      <h3>IRC</h3>
      <ul>
      <li>#concatenative on irc.libera.chat</li>
      </ul>
      <h3>Wikis</h3>
      <ul>
      <li><a href="https://www.concatenative.org/" rel="nofollow">concatenative wiki</a></li>
      </ul>
      <h3>Wikipedia Topics</h3>
      <ul>
      <li><a href="https://en.wikipedia.org/wiki/Reverse_Polish_notation" rel="nofollow">Reverse Polish Notation</a></li>
      <li><a href="https://en.wikipedia.org/wiki/Uniform_Function_Call_Syntax" rel="nofollow">Uniform Function Call Syntax</a></li>
      <li><a href="https://en.wikipedia.org/wiki/Stack-oriented_programming" rel="nofollow">Stack-Oriented Programming</a></li>
      <li><a href="https://en.wikipedia.org/wiki/Tacit_programming" rel="nofollow">Tacit Programming</a></li>
      <li><a href="https://en.wikipedia.org/wiki/Method_chaining" rel="nofollow">Method Chaining</a></li>
      <li><a href="https://en.wikipedia.org/wiki/Method_cascading" rel="nofollow">Method Cascading</a></li>
      <li><a href="https://en.wikipedia.org/wiki/Fluent_interface" rel="nofollow">Fluent Interface</a></li>
      </ul>
      <h3>Subreddits</h3>
      <ul>
      <li><a href="https://www.reddit.com/r/concatenative/" rel="nofollow">r/concatenative</a></li>
      <li><a href="https://www.reddit.com/r/factor/" rel="nofollow">r/factor</a></li>
      </ul>
      <h3>GitHub Topics</h3>
      <ul>
      <li><a href="https://github.com/topics/stack-based-language" rel="nofollow">Stack-Based Language</a></li>
      <li><a href="https://github.com/topics/concatenative" rel="nofollow">Concatenative</a></li>
      <li><a href="https://github.com/topics/concatenative-language" rel="nofollow">Concatenative Language</a></li>
      <li><a href="https://github.com/topics/concatenative-programming-language" rel="nofollow">Concatenative Programming Language</a></li>
      <li><a href="https://github.com/topics/concatenative-interpreting-language" rel="nofollow">Concatenative Interpreting Language</a></li>
      <li><a href="https://github.com/topics/fluent-interface" rel="nofollow">Fluent Interface</a></li>
      <li><a href="https://github.com/topics/method-chaining" rel="nofollow">Method Chaining</a></li>
      </ul>
      <h3>Blogs</h3>
      <ul>
      <li><a href="https://planet.factorcode.org/" rel="nofollow">planet-factor</a></li>
      </ul>
      <h3>Practice</h3>
      <ul>
      <li><a href="https://www.codewars.com/" rel="nofollow">Codewars</a> (Forth, Factor, Nim)</li>
      <li><a href="https://adventofcode.com/" rel="nofollow">Advent of Code</a></li>
      <li><a href="https://code.golf/" rel="nofollow">Code Golf</a> (Forth, Factor, Nim)</li>
      <li><a href="https://projecteuler.net/" rel="nofollow">Project Euler</a></li>
      <li><a href="https://exercism.org/" rel="nofollow">Exercism</a> (8th, Factor, Nim)</li>
      <li><a href="https://theweeklychallenge.org/challenges/" rel="nofollow">Perl Weekly Challenge</a></li>
      </ul>
      <h3>Mailing Lists</h3>
      <ul>
      <li><a href="https://lists.sr.ht/~rabbits/juxta" rel="nofollow">Juxta</a></li>
      </ul>
      <h3>Misc</h3>
      <ul>
      <li><a href="https://webring.catlang.social/" rel="nofollow">Catweb (webring)</a></li>
      </ul>

      Vizesine Unicourse'tan Çalış, Yüksek Notu Garantile!

      A B C D Çıkmış Sorular Formül Kağıtları Konu Anlatımı Sınav İpuçları Örnek Sınav
      Dersi İzle
      YENİ ÖZELLİK

      Bi'Öğrenci Fırsatları
      Forum'da!

      Bi'Öğrenci ile artık forum üzerinden en güncel indirimlere, anlık fırsatlara ve avantajlı tekliflere ulaşabilirsin.

      FIRSATLARI KEŞFET
      Red Bull Basement
      SPONSORLU ETKİNLİK

      Fikrini Gerçeğe Dönüştür

      Projeni dünyaya göstermek için sahne hazır. Red Bull Basement başvuruları açık.

      Başvurunu Yap

      🎉 Foruma Yeni Özellik Geldi!

      Sizin için PDF toollarını getirdik!

      İncele ve Kullan

      • Tüm etiketler
      • Yeni Cevaplanmış
      • Yeni Oluşturulmuş
      • En çok ileti yazılan
      • En çok oylanan
      • Çok Görüntülenen
      Yeni iletileri yükle
      Giriş Yap
      Nobody on this website is tracking or watching this category. Track or watch this category in order to begin receiving updates.
      • andy@programming.devA

        UI Demo – Re: Factor

        Takip ediliyor Susturulmuş Konu Zamanlandı Sabitlendi Kilitli Taşındı concatenative
        1
        1 Oy
        1 İleti
        0 Bakış
        Kimse yanıtlamadı
      • andy@programming.devA

        POP-2000, a lingua-franca POP-2 dialect

        Takip ediliyor Susturulmuş Konu Zamanlandı Sabitlendi Kilitli Taşındı concatenative
        1
        1 Oy
        1 İleti
        0 Bakış
        Kimse yanıtlamadı
      • N

        POP-2

        Takip ediliyor Susturulmuş Konu Zamanlandı Sabitlendi Kilitli Taşındı concatenative
        1
        2
        1 Oy
        1 İleti
        0 Bakış
        Kimse yanıtlamadı

      Developed by Enes Uysal & Kadir Ay

      2

      Çevrimiçi

      8.8k

      Kullanıcı

      1.9k

      Konu

      3.7k

      İleti
      • Giriş

      • Hesabınız yok mu? Kayıt Ol

      • Aramak için giriş yapın veya kaydolun
      • İlk ileti
        Son ileti