Front Page All Articles Recent Changes Random Article

Contents

Concatenative language

  • ACL
  • Ait
  • Aocla
  • Breeze
  • Callisto
  • Cat
  • Cognate
  • colorForth
  • Concata
  • CoSy
  • Deque
  • DSSP
  • dt
  • Elymas
  • Enchilada
  • ETAC
  • F
  • Factor
  • Fiveth
  • Forth
  • Fourth
  • Freelang
  • Gershwin
  • hex
  • iNet
  • Joy
  • Joy of Postfix App
  • kcats
  • Kitten
  • lang5
  • Listack
  • LSE64
  • Lviv
  • Meow5
  • min
  • Mirth
  • mjoy
  • Mlatu
  • Ode
  • OForth
  • Om
  • Onyx
  • Plorth
  • Popr
  • Porth
  • PostScript
  • Prowl
  • Quest32
  • Quackery
  • r3
  • Raven
  • Retro
  • RPL
  • SPL
  • Staapl
  • Stabel
  • Tal
  • Titan
  • Trith
  • Uiua
  • Worst
  • xs
  • XY
  • 5th
  • 8th

Concatenative topics

  • Compilers
  • Interpreters
  • Type systems
  • Object systems
  • Quotations
  • Variables
  • Garbage collection
  • Example programs

Concatenative meta

  • People
  • Communities

Other languages

  • APL
  • C++
  • Erlang
  • FP trivia
  • Haskell
  • Io
  • Java
  • JavaScript
  • Lisp
  • ML
  • Oberon
  • RPL
  • Self
  • Slate
  • Smalltalk

Meta

  • Search
  • Farkup wiki format
  • Etiquette
  • Sandbox

ACL

ACL is a concatenative programming language. ACL is a command line applicagtion released as open source under the BSD license. Plans include a GTK version to provide a GUI interface.

Developer: Don Groves

Development Environment: XCode on a MacBook Pro laptop running Mac OS.

Development Language: C.

I am seeking experienced C programmers to join the project. Immediate needs are testing ACL on other platforms and possibly joining as a developer. You can develop in any compatible environment.

If you are an expert C programmer, you can probably suggest improvements to my implementation. I welcome such suggestions.

A unique feature of ACL is the concept of aliasing. For example, if the user would rather use "add" instead of "+", putting the line "[add] alias +" into the ACL standard library will do the trick. I don't know why anyone would chose to do this for "+", but it is available. In fact, the entire ACL vocabulary may be aliased at the whim of the user. ACL characters and strings are stored as utf-8, so aliasing may be of interest for anyone wishing to code in their native language.

ACL supports vector math:

<1 2 3><4 5 6> + => <5 7 9>

<1 2 3><4 5 6> => <3.00 -6.00 3.00> (cross product)

<1 2 3> <4 5 6> . => 32 (dot product)

Matrix math coming soon. ACL also will eventually support rational and complex numbers.

The github repository for ACL is dgrovespdx/ACL.

This revision created on Thu, 12 May 2022 02:07:40 by dgpdx

Latest Revisions Edit

All content is © 2008-2024 by its respective authors. By adding content to this wiki, you agree to release it under the BSD license.