mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 18:39:57 +00:00
10 lines
176 B
Plaintext
10 lines
176 B
Plaintext
|
title: SampleJavaScript
|
||
|
type: application/javascript
|
||
|
|
||
|
/*
|
||
|
This is an example JavaScript file
|
||
|
*/
|
||
|
function myFunction(param) {
|
||
|
return param * Math.PI; // Perform a calculation
|
||
|
}
|