Skip to content

A package providing utilities to simplify Julia module exports.

License

Notifications You must be signed in to change notification settings

BrianDouglasIE/ExportUtils.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ExportUtils.jl

ExportUtils is a lightweight Julia package that provides a macro to simplify variable and function exporting. The @export_const macro helps you export and define constants in a concise and readable manner.

Usage

module TestModule
	using ExportUtils

	@export_const x = 10
	@export_const y = "hello"
	@export_const z = 3.14

	@export_const add = function (a, b)
	    return a + b
	end
end

Notes

Idea for package comes from a discussion on the Julia Zulip chat. Source Message.

About

A package providing utilities to simplify Julia module exports.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages