Open petersalex27 opened 9 months ago
imports work in a similar way, syntax looks different though
import
import Reflection import Functions as Func import FastMath as FM Prelude
use
import sml where sml = someMathLibrary in ... import someMathLibrary in ...
import sml where sml = someMathLibrary in ...
import someMathLibrary in ...
import { sml where sml = someMathLibrary math } in ...
use someMathLibrary in ...
use { someMathLibrary math } in ...
Edit:
imports work in a similar way, syntax looks different though
import
simport
parsinguse
parsingPrevious:
import
examples:import sml where sml = someMathLibrary in ...
import someMathLibrary in ...
use
examples:use someMathLibrary in ...