Jellycuts / Jellycuts-Issues

A public issue tracker for the Jellycuts iOS app.
23 stars 0 forks source link

Advanced Projects #78

Open ghost opened 3 years ago

ghost commented 3 years ago

Describe the solution you'd like

have "functions" or snippets be referenced in multiple source files and have source files be referenced in project files.

index.jproject

\# Metadata
source runtime.jelly //this is kind of silly and basically concatenates source files 
runtime.main()

runtime.jelly

include hello.j
hello.say("World!")

hello.j

function hello(word) {
print("Hello " + word) //not sure if this is supported but you get the idea
}